36
36
37
37
jobs :
38
38
39
- format :
40
- runs-on : windows-2022
41
- steps :
42
- - uses : actions/checkout@v4
43
- - name : Bootstrap Action Workspace
44
- uses : ./.github/workflows/bootstrap
45
- - name : Format
46
- run : ./build.bat format
39
+ # format:
40
+ # runs-on: windows-2022
41
+ # steps:
42
+ # - uses: actions/checkout@v4
43
+ # - name: Bootstrap Action Workspace
44
+ # uses: ./.github/workflows/bootstrap
45
+ # - name: Format
46
+ # run: ./build.bat format
47
47
48
48
# required step
49
49
tests :
50
50
runs-on : windows-2022
51
- needs : [ 'format' ]
52
51
timeout-minutes : 30
53
-
54
52
steps :
55
53
- uses : actions/checkout@v4
56
54
- name : Bootstrap Action Workspace
61
59
- name : ' Tests: Unit'
62
60
run : ./build.bat test --test-suite unit
63
61
64
- integrations -tests :
62
+ integration -tests :
65
63
runs-on : windows-2022
66
- needs : [ 'format', ' tests' ]
64
+ needs : [ 'tests' ]
67
65
steps :
68
66
- uses : actions/checkout@v4
69
67
- name : Bootstrap Action Workspace
84
82
85
83
startup-hook-tests :
86
84
runs-on : windows-2022
87
- needs : [ 'format', ' tests' ]
85
+ needs : [ 'tests' ]
88
86
steps :
89
87
- uses : actions/checkout@v4
90
88
- name : Bootstrap Action Workspace
95
93
96
94
profiler-tests :
97
95
runs-on : windows-2022
98
- needs : [ 'format', ' tests' ]
96
+ needs : [ 'tests' ]
99
97
steps :
100
98
- uses : actions/checkout@v4
101
99
- name : Bootstrap Action Workspace
@@ -109,8 +107,7 @@ jobs:
109
107
110
108
test-iis :
111
109
runs-on : windows-latest
112
- needs : [ 'format', 'tests' ]
113
-
110
+ needs : [ 'tests' ]
114
111
steps :
115
112
- uses : actions/checkout@v4
116
113
- name : Bootstrap Action Workspace
0 commit comments