Skip to content

Commit

Permalink
github: Also run tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Jul 27, 2021
1 parent 02aebd9 commit 3f42935
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ on:
branches: [ master ]

jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.16.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: ${{ matrix.go-version }}

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

0 comments on commit 3f42935

Please sign in to comment.