Add GH windows tests (not working yet)

This commit is contained in:
Benson Wong
2025-05-14 19:58:18 -07:00
parent e3a0b013c1
commit 5025c2f1f3
2 changed files with 35 additions and 1 deletions

34
.github/workflows/go-ci-windows.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
# This workflow will build a golang project
name: Windows CI
on:
push:
branches: [ "windows-tests" ]
pull_request:
branches: [ "windows-tests" ]
# Allows manual triggering of the workflow
workflow_dispatch:
jobs:
run-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
# necessary for testing proxy/Process swapping
- name: Create simple-responder
shell: bash
run: make simple-responder
- name: Test all
shell: bash
run: make test-all

View File

@@ -1,6 +1,6 @@
# This workflow will build a golang project
name: CI
name: Linux CI
on:
push: