Skip to content

Commit 5025c2f

Browse files
committed
Add GH windows tests (not working yet)
1 parent e3a0b01 commit 5025c2f

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/go-ci-windows.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

.github/workflows/go-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow will build a golang project
22

3-
name: CI
3+
name: Linux CI
44

55
on:
66
push:

0 commit comments

Comments
 (0)