Skip to content

Bump mypy from 1.7.0 to 1.7.1 #29

Bump mypy from 1.7.0 to 1.7.1

Bump mypy from 1.7.0 to 1.7.1 #29

Workflow file for this run

name: Python CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-root
- name: Check lint
run: make lint
- name: Run unit tests
run: make test