Skip to content

Commit 7c6f0d2

Browse files
committed
Add Windows to test matrix
1 parent 6ffa541 commit 7c6f0d2

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ on: [push, workflow_dispatch]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, windows-latest]
10+
runs-on: ${{ matrix.os }}
811

912
steps:
1013
- name: 1️⃣ Checkout repository 🛎️
@@ -46,4 +49,3 @@ jobs:
4649
mkdir dist
4750
go test -covermode atomic -coverpkg=$(go list ./... | grep -vE "/test/|/e2e/" | tr '\n' ',') -coverprofile=dist/covprofile ./...
4851
goveralls -coverprofile=dist/covprofile -service=github
49-

0 commit comments

Comments
 (0)