Skip to content

Commit 0bef45e

Browse files
ci: Check strictly for success
1 parent 9b66f3b commit 0bef45e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test-integrations-common.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12","3.13"]
32+
python-version:
33+
["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3334
# python3.6 reached EOL and is no longer being supported on
3435
# new versions of hosted runners on Github Actions
3536
# ubuntu-20.04 is the last version that supported python3.6
@@ -89,6 +90,6 @@ jobs:
8990
runs-on: ubuntu-22.04
9091
steps:
9192
- name: Check for failures
92-
if: contains(needs.test-common-pinned.result, 'failure') || contains(needs.test-common-pinned.result, 'skipped')
93+
if: needs.test-common-pinned.result != 'success'
9394
run: |
9495
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)