Skip to content

Commit

Permalink
Update go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seipan committed Aug 2, 2023
1 parent 2d73210 commit beda296
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ on:
jobs:

build:
strategy:
matrix:
go-version: ['1.18', '1.19', '1.20']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
- name: set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: ${{ matrix.go-version }}

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

0 comments on commit beda296

Please sign in to comment.