Skip to content

Commit

Permalink
feat:semver
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 25, 2024
1 parent 693c77a commit 6e51764
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Run UnitTests
on:
pull_request:
branches:
- dev
paths-ignore:
- 'json_database/version.py'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'readme.md'
- 'scripts/**'
push:
branches:
- master
paths-ignore:
- 'json_database/version.py'
- 'requirements/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'readme.md'
- 'scripts/**'
workflow_dispatch:

jobs:
unit_tests:
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev swig libssl-dev libpulse-dev portaudio19-dev
python -m pip install build wheel
- name: Install core repo
run: |
pip install .[extras,linux,onnx]
- name: Install test dependencies
run: |
pip install -r requirements/tests.txt
- name: Run unittests
run: |
pytest test/unittests

0 comments on commit 6e51764

Please sign in to comment.