Skip to content

Commit

Permalink
add windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
rusq committed Dec 31, 2024
1 parent e6b5bf3 commit fab35b6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,23 @@ jobs:
- name: Test
run: make test

build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"

- name: Build
run: go build -v ./...

- name: Check Catalogue
run: |
BASE_DIR="contrib" go run ./contrib/_gen -v
- name: Test
run: go test ./... -race

0 comments on commit fab35b6

Please sign in to comment.