Skip to content

Prefer >=1,<2 over ==1.* for dependency ranges. #17

Prefer >=1,<2 over ==1.* for dependency ranges.

Prefer >=1,<2 over ==1.* for dependency ranges. #17

Workflow file for this run

name: Lint with MyPy
on: [push, pull_request]
jobs:
mypy:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install -c ci-constraints.txt . -r mypy-requirements.txt -r test-requirements.txt
- name: Run MyPy
run: |
mypy .