File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,16 @@ jobs:
22
22
if : ${{ steps.lint.outcome != 'success' }}
23
23
run : echo "::warning::Linter failure suppressed (continue-on-error=true)"
24
24
test :
25
- if : false # temporary disabled
26
25
strategy :
27
26
fail-fast : false
28
27
matrix :
29
28
os : [ ubuntu-latest ]
30
29
python :
31
30
- " 3.12"
32
- # - "3.11"
33
- # - "3.10"
34
- # - "3.9.14"
35
- # - "3.8"
31
+ - " 3.11"
32
+ - " 3.10"
33
+ - " 3.9.14"
34
+ - " 3.8"
36
35
runs-on : ${{ matrix.os }}
37
36
steps :
38
37
- uses : actions/checkout@v5
42
41
- name : Test
43
42
run : tox
44
43
smoketest :
45
- if : false
46
44
runs-on : ubuntu-latest
47
- # needs: [ 'lint','test' ]
45
+ needs : [ 'lint','test' ]
48
46
steps :
49
47
- uses : actions/checkout@v5
50
48
- name : dockerhub login (for seamless docker pulling)
62
60
SMOKETEST_DOCKER_IMAGE : python:${{ steps.setup.outputs.python-version }}
63
61
release :
64
62
if : ( github.ref_name == 'master' || startsWith(github.ref_name, 'ci/') )
65
- # needs: ['smoketest','lint','test']
63
+ needs : ['smoketest','lint','test']
66
64
runs-on : ubuntu-latest
67
65
steps :
68
66
- uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments