We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b3ef4c + 24c259a commit 0870bf7Copy full SHA for 0870bf7
.github/workflows/CI.yml
@@ -62,8 +62,21 @@ jobs:
62
)'
63
- uses: julia-actions/julia-buildpkg@v1
64
- uses: julia-actions/julia-docdeploy@v1
65
+ continue-on-error: true
66
env:
67
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
-
69
+ rollup:
70
+ runs-on: ubuntu-latest
71
+ needs:
72
+ - test
73
+ - docs
74
+ if: always()
75
+ steps:
76
+ - name: All tests passed
77
+ if: ${{ !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') }}
78
+ run: exit 0
79
+ - name: Some tests failed or cancelled
80
+ if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
81
+ run: exit 1
82
0 commit comments