File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,18 @@ jobs:
45
45
46
46
static-code-analysis :
47
47
name : StaticCodingAnalysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }})
48
- runs-on : ubuntu-latest
48
+ runs-on : ${{ matrix.os }}
49
49
timeout-minutes : 10
50
50
strategy :
51
51
fail-fast : false
52
52
matrix :
53
53
include :
54
54
- # test with the locked dependencies
55
+ os : ubuntu-latest
55
56
python-version : ' 3.10'
56
57
toxenv-factor : ' locked'
57
58
- # test with the lowest dependencies
59
+ os : ubuntu-20.04
58
60
python-version : ' 3.6'
59
61
toxenv-factor : ' lowest'
60
62
steps :
@@ -95,10 +97,18 @@ jobs:
95
97
- " 3.6" # lowest supported
96
98
toxenv-factor : ['locked']
97
99
include :
100
+ - # test with py36 ubuntu20
101
+ os : ubuntu-20.04
102
+ python-version : ' 3.6'
103
+ toxenv-factor : ' locked'
98
104
- # test with the lowest dependencies
99
- os : ' ubuntu-latest '
105
+ os : ubuntu-20.04
100
106
python-version : ' 3.6'
101
107
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'
102
112
steps :
103
113
- name : Disabled Git auto EOL CRLF transforms
104
114
run : |
You can’t perform that action at this time.
0 commit comments