Skip to content

Initial Useful Release #18

Initial Useful Release

Initial Useful Release #18

Workflow file for this run

name: Test Matrix
on:
pull_request:
branches: [main]
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
test:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install Hatch
run: |
pip install --upgrade hatch
- name: Check type correctness
run: |
hatch run types:check --python ${{ matrix.python-version }}
- name: Run tests
run: |
hatch test --python ${{ matrix.python-version }} --cover --randomize