Skip to content

Commit

Permalink
TYP: typecheck in Python 3.11 too
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Jan 28, 2023
1 parent 2791e8d commit e3f9129
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,17 @@ jobs:
type-check:
strategy:
matrix:
python-version:
- '3.8'
- '3.11'

runs-on: ubuntu-latest
name: type check

concurrency:
group: ${{ github.ref }}-dev
group: ${{ github.ref }}-py${{ python-version }}
cancel-in-progress: true

steps:
Expand All @@ -55,9 +61,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
# Match minimal supported Python version
# to make sure we're not using unparseable syntax
python-version: '3.8'
python-version: ${{ matrix.python-version }}

- name: Build
run: |
Expand Down

0 comments on commit e3f9129

Please sign in to comment.