File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 24
24
25
25
tests :
26
26
if : github.ref_type == 'tag' || startsWith(github.ref, 'refs/pull/')
27
+ needs : lint
27
28
runs-on : ubuntu-latest
28
29
name : Tests
29
30
steps :
34
35
35
36
build-windows :
36
37
if : github.ref_type == 'tag' || startsWith(github.ref, 'refs/pull/')
37
- needs : lint
38
+ needs : [ lint, tests]
38
39
runs-on : windows-latest
39
40
name : Release build for Windows
40
41
steps :
52
53
53
54
build-macos :
54
55
if : github.ref_type == 'tag' || startsWith(github.ref, 'refs/pull/')
55
- needs : lint
56
+ needs : [ lint, tests]
56
57
runs-on : macos-latest
57
58
name : Release build for macOS
58
59
steps :
70
71
71
72
build-linux :
72
73
if : github.ref_type == 'tag' || startsWith(github.ref, 'refs/pull/')
73
- needs : lint
74
+ needs : [ lint, tests]
74
75
runs-on : ubuntu-latest
75
76
name : Release build for linux x86_64
76
77
steps :
92
93
93
94
build-arm :
94
95
if : github.ref_type == 'tag' || startsWith(github.ref, 'refs/pull/')
95
- needs : lint
96
+ needs : [ lint, tests]
96
97
name : Release builds for linux ARM
97
98
runs-on : ubuntu-latest
98
99
strategy :
You can’t perform that action at this time.
0 commit comments