Skip to content

Extra comment about package name #201

Extra comment about package name

Extra comment about package name #201

Workflow file for this run

name: Test Matrix
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
test:
name: Testing 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]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Hatch
uses: pypa/hatch@install
- name: Check type correctness
run: |
make checkall
- name: Run tests
run: |
make testall