trying to fix github macos runner #89
This file contains hidden or 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: unit tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: # https://github.com/actions/runner-images#available-images | |
| os: [macos-14, macos-15, macos-26] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| python3 --version | |
| python3 -m pip install --upgrade pip | |
| pip3 install --break-system-packages tox | |
| - name: Test with tox | |
| run: tox -e py,style |