Skip to content

Bump mypy from 1.14.0 to 1.14.1 in /requirements #467

Bump mypy from 1.14.0 to 1.14.1 in /requirements

Bump mypy from 1.14.0 to 1.14.1 in /requirements #467

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy-3.7"
- "pypy-3.8"
- "pypy-3.9"
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python dev-helper.py run-tests
- name: Upload coverage
# PyPy data isn't reliable because it changes trace function
if: "!startsWith(matrix.python-version, 'pypy')"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pip install -r requirements/coveralls.txt && coveralls --service=github
run-checks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run checks
run: python dev-helper.py run-checks