add further mac os versions #8
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
# This workflow will install acoular and run tests a variety of Python versions | |
name: Acoular install and test | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
branches: [ "*" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, macos-11, macos-12, macos-13] | |
python-version: ['3.10','3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install acoular | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
python -c 'import acoular' | |
- name: Test with unittest *nix | |
run: | | |
echo `sw_vers` | |
uname -p | |
chmod +x ../acoular/acoular/tests/run_tests.sh | |
cd ../acoular/acoular/tests/ | |
bash run_tests.sh | |
if: ${{ matrix.os != 'windows-latest'}} | |
- name: Test with unittest Windows | |
run: | | |
cd ..\acoular\acoular\tests | |
python -m unittest discover -v -p "test_*.py" | |
if: ${{ matrix.os == 'windows-latest'}} | |