Skip to content

CI: Run test suite on macOS 14 and Windows #177

CI: Run test suite on macOS 14 and Windows

CI: Run test suite on macOS 14 and Windows #177

Workflow file for this run

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"

Check failure on line 39 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 39, Col: 11): A sequence was not expected
- 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