Fix windows installation #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Package with multi-threading | |
on: | |
pull_request: | |
branches: [main] | |
types: [synchronize, opened, reopened, ready_for_review] | |
jobs: | |
build-and-test: | |
name: Test on ${{ matrix.os }} - Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest"] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install WavPack (ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
WAVPACK_LATEST_VERSION="$(cat ./.github/wavpack_latest_version.txt)" | |
chmod +x ./.github/scripts/install-wavpack-linux.sh | |
./.github/scripts/install-wavpack-linux.sh $WAVPACK_LATEST_VERSION | |
# check libraries | |
ls /usr/local/lib/ | grep wavpack | |
- name: Set up Homebrew (macos) | |
if: matrix.os == 'macos-latest' | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install WavPack (macos) | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install wavpack | |
# check version | |
brew info wavpack | |
- name: Python version | |
run: | | |
which python | |
- name: Install dependencies | |
run: | | |
pip install .[test] | |
- name: Test imports and version | |
run: | | |
pytest -s tests/test_imports.py | |
- name: Test with pytest | |
run: | | |
pytest -v |