Skip to content

Commit

Permalink
Merge pull request #763 from fcollonval/test/async_handling
Browse files Browse the repository at this point in the history
Add Python 3.5, 3.6 and 3.12.0-rc.1 to test matrix
  • Loading branch information
Red-M committed Sep 29, 2023
2 parents eb9c306 + 3793706 commit c0296ca
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -8,11 +8,19 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
os: ["ubuntu-22.04"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1", "pypy3.9"]
include:
# Python < 3.7 is not available on ubuntu-22.04
- os: "ubuntu-20.04"
python-version: "3.5"
- os: "ubuntu-20.04"
python-version: "3.6"

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit c0296ca

Please sign in to comment.