Skip to content

Commit

Permalink
windows recipie
Browse files Browse the repository at this point in the history
  • Loading branch information
habuvo committed Mar 27, 2024
1 parent e6f614e commit eef492b
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: ["main"]

jobs:
build:
build-on-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
Expand All @@ -27,3 +27,17 @@ jobs:

- name: Test
run: go test -v ./...
build-on-windows:
runs-on: windows-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"

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

- name: Test
run: go test -v ./...

0 comments on commit eef492b

Please sign in to comment.