File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 2121 # ###############
2222
2323 pr :
24- if : ${{ github.event_name == 'pull_request'
25- && needs.clippy.result == 'success'
26- && needs.feature.result == 'success'
27- && needs.msrv.result == 'success'
28- && needs.rustdoc.result == 'success'
29- && needs.rustfmt.result == 'success'
30- && needs.test.result == 'success'
31- && needs.test-book.result == 'success' }}
24+ if : ${{ always() && github.event_name == 'pull_request' }}
3225 needs :
3326 - clippy
3427 - feature
3932 - test-book
4033 runs-on : ubuntu-latest
4134 steps :
42- - run : true
35+ - run : ${{ needs.clippy.result == 'success'
36+ && needs.feature.result == 'success'
37+ && needs.msrv.result == 'success'
38+ && needs.rustdoc.result == 'success'
39+ && needs.rustfmt.result == 'success'
40+ && needs.test.result == 'success'
41+ && needs.test-book.result == 'success' }}
4342
4443
4544
You can’t perform that action at this time.
0 commit comments