Skip to content

check test run ci

check test run ci #5

Workflow file for this run

name: run typecheck
on:
pull_request:
paths:
- '**.py'
push:
paths:
- '**.py'
branches:
- main
jobs:
run-mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pdm install -dG typing
- name: Run tests
run: pdm run mypy .