Skip to content

Commit 1b0110e

Browse files
committed
fix(ci): restore all dependencies and full testing matrix
1 parent a5ef477 commit 1b0110e

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff 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
@@ -42,9 +41,8 @@ jobs:
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)
@@ -62,7 +60,7 @@ jobs:
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

0 commit comments

Comments
 (0)