Skip to content

Commit

Permalink
Update actions to test unsupported Python versions on ubuntu-20.04
Browse files Browse the repository at this point in the history
Signed-off-by: Roger Aiudi <aiudirog@gmail.com>
  • Loading branch information
aiudirog committed Nov 19, 2022
1 parent 182690e commit c1b2f49
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,21 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest]
experimental: [false]
include:
- python-version: 3.10.0-beta.2
experimental: true
- python-version: 2.7
os: ubuntu-20.04
experimental: false
- python-version: 3.5
os: ubuntu-20.04
experimental: false
- python-version: 3.6
os: ubuntu-20.04
experimental: false

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
name: test-${{ matrix.python-version }}
continue-on-error: ${{ matrix.experimental }}
steps:
Expand Down

0 comments on commit c1b2f49

Please sign in to comment.