Bump mypy from 1.5.1 to 1.6.1 #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
tags: [ '*' ] | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
strategy: | |
max-parallel: 7 | |
matrix: | |
os: | |
- ubuntu-latest | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- pypy-3.8 | |
- pypy-3.9 | |
include: | |
- os: ubuntu-latest | |
python-version: '3.8' | |
coverage: true | |
lint: true | |
- os: macOS-latest | |
python-version: '3.8' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -U hatch | |
- name: ruff | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:ruff check tests | |
- name: isort | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:isort -c tests | |
- name: black | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:black --check --diff tests | |
- name: mypy | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:mypy tests | |
- name: Tests | |
run: | | |
hatch run pytest |