Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run CI for Python 3.6 on Ubuntu 20.04 #217

Merged
merged 2 commits into from
Dec 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ on: [push, pull_request]

jobs:
test:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
Expand All @@ -15,6 +14,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
4 changes: 3 additions & 1 deletion 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 All @@ -24,7 +26,7 @@ commands = black --check --diff --fast .

[testenv:flake8]
deps =
flake8
flake8<6.0.0 # TODO remove pinned version once https://github.com/zheller/flake8-quotes/pull/111 is merged.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: zheller/flake8-quotes#111 was merged, but no release yet

flake8-black
flake8-docstrings
flake8-quotes
Expand Down