Skip to content

Set up GitHub Actions for running tests and checking types and formatting #2

Set up GitHub Actions for running tests and checking types and formatting

Set up GitHub Actions for running tests and checking types and formatting #2

Workflow file for this run

---
name: mypy
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-24.04
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run mypy
run: poetry run mypy --strict .