CI: Run test suite on macOS 14 and Windows #177
Workflow file for this run
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: test | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
unit: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] | ||
include: | ||
- os: macos-13 | ||
python-version: '3.12' | ||
- os: macos-14 | ||
python-version: '3.12' | ||
- os: windows-latest | ||
python-version: '3.12' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install pipx | ||
if: ${{ matrix.os == 'macos-14' }} | ||
run: | ||
- export PIPX_HOME="/opt/pipx" | ||
- export PIPX_BIN_DIR="$PIPX_HOME/bin" | ||
- python3 -m pip install pipx | ||
- python3 -m pipx ensurepath | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: pip | ||
- name: Install Hatch | ||
run: pipx install hatch | ||
- name: Run tests | ||
run: hatch run +py=${{ matrix.python-version }} cov |