Skip to content

Commit

Permalink
Run the test compatibility check even if tests failed (#6224)
Browse files Browse the repository at this point in the history
This forces the test compatibility check to run, even if compatibility
test checks have failed, as having it skipped still allows merging PRs.

<img width="922" alt="Screenshot 2024-10-09 at 13 45 05"
src="https://github.com/user-attachments/assets/503ff89d-4fd9-4258-81a7-efdcfe61d4a5">

<img width="920" alt="Screenshot 2024-10-09 at 13 45 24"
src="https://github.com/user-attachments/assets/c9cbf71c-0d8e-4593-bb67-a69b38cc5111">
  • Loading branch information
dmathieu authored Oct 10, 2024
1 parent da177b2 commit 900fc4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ jobs:
test-compatibility:
runs-on: ubuntu-latest
needs: [compatibility-test]
if: always()
steps:
- name: Test if compatibility-test workflow passed
run: |
echo ${{ needs.compatibility-test.result }}
test ${{ needs.compatibility-test.result }} == "success"

0 comments on commit 900fc4b

Please sign in to comment.