Skip to content

Commit

Permalink
Update python-safpy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-hld committed Jan 30, 2024
1 parent 84d9722 commit 92224d9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/python-safpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:

- name: Test SAF
run: |
ls -lh ./Spatial_Audio_Framework/build/framework
ls -lh ./Spatial_Audio_Framework/build/test
if [ "$RUNNER_OS" != "Windows" ]; then
./Spatial_Audio_Framework/build/test/saf_test
Expand All @@ -97,6 +98,15 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build package
run: |
if [ "$RUNNER_OS" != "Windows" ]; then
python setup.py build
else
python setup.py build --compiler=mingw32
fi
shell: bash

- name: Build and install package
run: python -m pip install -e .
- name: Test with pytest
Expand Down

0 comments on commit 92224d9

Please sign in to comment.