diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index b2b03ac..b33e7eb 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -46,8 +46,18 @@ jobs: libsndfile1-dev \ libspeexdsp-dev \ - - name: Build libaudio - shell: ${{ runner.os == 'Windows' && 'msys2 {0}' || 'bash' }} + - name: Build libaudio (Windows) + if: runner.os == 'Windows' + shell: msys2 {0} + run: | + cd libs/audio + make clean + make all + make verify + + - name: Build libaudio (Unix) + if: runner.os != 'Windows' + shell: bash run: | cd libs/audio make clean