chore: build against Go 1.22 #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint project | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
# perform matrix testing to give us an earlier insight into issues with different versions of supported major versions of Go | |
matrix: | |
version: | |
- "1.20" | |
- "1.21" | |
- "1.22" | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.version }} | |
- name: Run `make lint-ci` | |
run: make lint-ci |