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:
2222 if : ${{ steps.lint.outcome != 'success' }}
2323 run : echo "::warning::Linter failure suppressed (continue-on-error=true)"
2424 test :
25- if : false # temporary disabled
2625 strategy :
2726 fail-fast : false
2827 matrix :
2928 os : [ ubuntu-latest ]
3029 python :
3130 - " 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"
3635 runs-on : ${{ matrix.os }}
3736 steps :
3837 - uses : actions/checkout@v5
4241 - name : Test
4342 run : tox
4443 smoketest :
45- if : false
4644 runs-on : ubuntu-latest
47- # needs: [ 'lint','test' ]
45+ needs : [ 'lint','test' ]
4846 steps :
4947 - uses : actions/checkout@v5
5048 - name : dockerhub login (for seamless docker pulling)
6260 SMOKETEST_DOCKER_IMAGE : python:${{ steps.setup.outputs.python-version }}
6361 release :
6462 if : ( github.ref_name == 'master' || startsWith(github.ref_name, 'ci/') )
65- # needs: ['smoketest','lint','test']
63+ needs : ['smoketest','lint','test']
6664 runs-on : ubuntu-latest
6765 steps :
6866 - uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments