Skip to content

don't change the checkout action to a nonexistent version... #63

don't change the checkout action to a nonexistent version...

don't change the checkout action to a nonexistent version... #63

Workflow file for this run

name: Type check
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typecheck:
runs-on: ubuntu-latest
name: Type check
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Type check with mypy (through tox)
run: tox -e type-check