Skip to content

Commit

Permalink
Run CI for Python 3.6 on Ubuntu 20.04
Browse files Browse the repository at this point in the history
The now latest Ubuntu no longer ships with 3.6.
  • Loading branch information
kalikiana committed Dec 2, 2022
1 parent cadf181 commit c561797
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
test:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
Expand All @@ -15,6 +15,12 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12.0-alpha - 3.12.0'
include:
- os: "ubuntu-latest"
- os: "ubuntu-20.04"
python-version: "3.6"

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

0 comments on commit c561797

Please sign in to comment.