Skip to content

Build tests in a separate step #250

Build tests in a separate step

Build tests in a separate step #250

Workflow file for this run

name: Windows CI
on:
push:
branches: [master]
pull_request:
jobs:
validate:
runs-on: windows-2022
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: go build
- run: go test -c -v ./...
- run: go test -timeout 30s ./...