chore: bump mypy from 1.9.0 to 1.10.0 #155
Workflow file for this run
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: Code Testing | |
on: | |
pull_request | |
jobs: | |
lint: | |
name: Run pylint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: pip install tox tox-gh-actions | |
- name: "Run lint" | |
run: tox -e lint | |
type: | |
name: Run mypy | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: pip install tox tox-gh-actions | |
- name: "Run mypy" | |
run: tox -e type | |
tox: | |
name: Run pytest for supported Python versions | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: pip install tox tox-gh-actions | |
- name: "Run tox for ${{ matrix.python }}" | |
run: tox |