Skip to content

Remove post-3.8 typing features. #277

Remove post-3.8 typing features.

Remove post-3.8 typing features. #277

Workflow file for this run

name: Checks
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.11"
env:
TOXENV: security
- python-version: "3.11"
env:
TOXENV: flake8
- python-version: "3.11"
env:
TOXENV: pylint
- python-version: "3.11" # Keep in sync with .readthedocs.yml
env:
TOXENV: docs
- python-version: "3.11"
env:
TOXENV: typing
- python-version: "3.11"
env:
TOXENV: black
- python-version: "3.11"
env:
TOXENV: twinecheck
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run check
env: ${{ matrix.env }}
run: |
pip install -U tox
tox