Skip to content

Ryan-Horng is automating using Github Actions #64

Ryan-Horng is automating using Github Actions

Ryan-Horng is automating using Github Actions #64

Workflow file for this run

name: ML Tests
run-name: ${{ github.actor }} is automating using Github Actions
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y portaudio19-dev
sudo apt-get install -y ffmpeg
python -m pip install --upgrade pip
python -m pip install pipenv
pipenv shell --fancy --python $(which python)
pipenv install -r requirements.txt
working-directory: machine-learning-client
- name: Run tests
run: |
pipenv run pytest --cov=machine_learning_client ml_tests.py
working-directory: machine-learning-client/tests