diff --git a/.github/workflows/python-safpy.yml b/.github/workflows/python-safpy.yml index e6512e4..a317fce 100644 --- a/.github/workflows/python-safpy.yml +++ b/.github/workflows/python-safpy.yml @@ -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 @@ -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