File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a golang project
2
+
3
+ name : Windows CI
4
+
5
+ on :
6
+ push :
7
+ branches : [ "windows-tests" ]
8
+
9
+ pull_request :
10
+ branches : [ "windows-tests" ]
11
+
12
+ # Allows manual triggering of the workflow
13
+ workflow_dispatch :
14
+
15
+ jobs :
16
+
17
+ run-tests :
18
+ runs-on : windows-latest
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+
22
+ - name : Set up Go
23
+ uses : actions/setup-go@v4
24
+ with :
25
+ go-version : ' 1.23'
26
+
27
+ # necessary for testing proxy/Process swapping
28
+ - name : Create simple-responder
29
+ shell : bash
30
+ run : make simple-responder
31
+
32
+ - name : Test all
33
+ shell : bash
34
+ run : make test-all
Original file line number Diff line number Diff line change 1
1
# This workflow will build a golang project
2
2
3
- name : CI
3
+ name : Linux CI
4
4
5
5
on :
6
6
push :
You can’t perform that action at this time.
0 commit comments