Skip to content

Commit

Permalink
Run go build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Apr 5, 2024
1 parent bae4fc5 commit 55d53d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.20", "1.21"]
go-version: ["1.21", "1.22"]
name: Lint ${{ matrix.go-version == '1.22' && '(latest)' || '(old)' }}

steps:
- uses: actions/checkout@v4
Expand All @@ -32,3 +33,6 @@ jobs:

- name: Lint
run: pre-commit run -a

- name: Build
run: go build

0 comments on commit 55d53d3

Please sign in to comment.