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 3e4a65c
Show file tree
Hide file tree
Showing 2 changed files with 9 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
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv:black]
deps =
Expand Down

0 comments on commit 3e4a65c

Please sign in to comment.