Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
calmh committed Feb 2, 2023
1 parent c8a7a3e commit b3d3f70
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,21 @@ on:
jobs:

build:

strategy:
matrix:
go:
- "1.19"
- "1.20"

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

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

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

0 comments on commit b3d3f70

Please sign in to comment.