Skip to content

Commit

Permalink
Add CI tests for Python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
avylove committed Feb 6, 2023
1 parent d372af2 commit c32302f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- main
jobs:
Check:
timeout-minutes: 40
continue-on-error: ${{ matrix.optional || false }}
runs-on: ${{ matrix.os }}
name: >-
Expand All @@ -18,10 +19,21 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
python-version: ['3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12-dev']
nox-session: [test, example]

exclude:
# Azure installion (Win, 3.12) currently hangs due to excessive pip backtracking
# Disable unit tests and retry in 2Q23
- python-version: '3.12-dev'
os: windows-2019
nox-session: test

include:

- python-version: '3.12-dev'
optional: true

- os: ubuntu-latest
python-version: ''
nox-session: ''
Expand Down

0 comments on commit c32302f

Please sign in to comment.