Skip to content

Commit

Permalink
Merge pull request #217 from os-autoinst/ci_mocker_mock_mock
Browse files Browse the repository at this point in the history
Run CI for Python 3.6 on Ubuntu 20.04
  • Loading branch information
mergify[bot] committed Dec 3, 2022
2 parents cadf181 + 2dc4dc4 commit 4096a65
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
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.
flake8-black
flake8-docstrings
flake8-quotes
Expand Down

0 comments on commit 4096a65

Please sign in to comment.