Skip to content

Commit

Permalink
ci: validate against multiple versions (#67)
Browse files Browse the repository at this point in the history
* ci: run on go 1.19-1.21

* fixup! ci: run on go 1.19-1.21

* ci: add 1.22 and 1.23
  • Loading branch information
nicklasl authored Dec 9, 2024
1 parent 7424fe2 commit a648739
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', '1.22', '1.23']
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 a648739

Please sign in to comment.