Skip to content

Commit

Permalink
ci: run on go 1.19-1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklasl committed Dec 9, 2024
1 parent 7424fe2 commit 194d660
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ jobs:
build:

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

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: ${{ matrix.go-version }}

- name: Build Confidence
run: cd pkg/confidence && go build -v .
Expand Down

0 comments on commit 194d660

Please sign in to comment.