Skip to content

Commit cf9f790

Browse files
authored
ci: fix py36 (#320)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 63bfb87 commit cf9f790

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/poetry.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,18 @@ jobs:
4545

4646
static-code-analysis:
4747
name: StaticCodingAnalysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }})
48-
runs-on: ubuntu-latest
48+
runs-on: ${{ matrix.os }}
4949
timeout-minutes: 10
5050
strategy:
5151
fail-fast: false
5252
matrix:
5353
include:
5454
- # test with the locked dependencies
55+
os: ubuntu-latest
5556
python-version: '3.10'
5657
toxenv-factor: 'locked'
5758
- # test with the lowest dependencies
59+
os: ubuntu-20.04
5860
python-version: '3.6'
5961
toxenv-factor: 'lowest'
6062
steps:
@@ -95,10 +97,18 @@ jobs:
9597
- "3.6" # lowest supported
9698
toxenv-factor: ['locked']
9799
include:
100+
- # test with py36 ubuntu20
101+
os: ubuntu-20.04
102+
python-version: '3.6'
103+
toxenv-factor: 'locked'
98104
- # test with the lowest dependencies
99-
os: 'ubuntu-latest'
105+
os: ubuntu-20.04
100106
python-version: '3.6'
101107
toxenv-factor: 'lowest'
108+
exclude:
109+
- # no py36 with latest ubuntu - see https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
110+
os: ubuntu-latest
111+
python-version: '3.6'
102112
steps:
103113
- name: Disabled Git auto EOL CRLF transforms
104114
run: |

0 commit comments

Comments
 (0)