Skip to content

Commit

Permalink
update build to run on newer versions of go
Browse files Browse the repository at this point in the history
  • Loading branch information
ansel1 committed Feb 27, 2023
1 parent 9cb65a6 commit d685cba
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 @@ -5,18 +5,21 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:

build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '^1.14', 'oldstable', 'stable' ]
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ^1.14
go-version: ${{ matrix.go }}
id: go

- name: Check out code into the Go module directory
Expand Down

0 comments on commit d685cba

Please sign in to comment.