File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 51
51
exclude :
52
52
- isCron : false
53
53
mysql : " mysql:9.1.0"
54
- continue-on-error : true
54
+ # Don't cancel all tests if an integration suite fails as integration suites are more likely to be flakey.
55
+ # Don't cancel all tests if the vulns suite fails as vulns may start failing for unrelated reasons to PR'd code.
56
+ continue-on-error : ${{ matrix.suite == 'vuln' || startsWith(matrix.suite, 'integration-') }}
55
57
runs-on : ${{ matrix.os }}
56
58
57
59
env :
86
88
- name : Install Go Dependencies
87
89
run : make deps-go
88
90
89
- # This step takes >20 seconds and should be skipped for jobs that don't need it. https://github.com/fleetdm/fleet/issues/27435
90
- # - name: Install ZSH
91
- # run: sudo apt update && sudo apt install -y zsh
92
-
93
91
- name : Generate static files
94
92
run : |
95
93
export PATH=$PATH:~/go/bin
You can’t perform that action at this time.
0 commit comments