Skip to content

Submit command

Submit command #14

Workflow file for this run

name: "Quality checks"
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
# Many color libraries just need this to be set to any value, but at least
# one distinguishes color depth, where "3" -> "256-bit color".
FORCE_COLOR: 3
jobs:
typecheck:
name: "Typecheck"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- name: "Install package"
run: "python -m pip install .[test]"
- name: "Typecheck package"
run: "mypy"
test:
name: "Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}"
runs-on: "${{ matrix.runs-on }}"
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"]
include:
- python-version: "pypy-3.11"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- name: "Install package"
run: "python -m pip install .[test]"
- name: "Test package"
# prettier-ignore
run: "python -m pytest -ra --durations=20 --cov --cov-report=xml --cov-report=term"
- name: "Upload coverage report"
uses: "codecov/codecov-action@v4.3.0"
with:
token: "${{ secrets.CODECOV_TOKEN }}"