Skip to content

Bump mypy from 1.9.0 to 1.10.1 #457

Bump mypy from 1.9.0 to 1.10.1

Bump mypy from 1.9.0 to 1.10.1 #457

Workflow file for this run

name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: Lint and test
run: make test