-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: pin Ubuntu version to
24.04
(#507)
Signed-off-by: Nathan <[email protected]>
- Loading branch information
1 parent
ae2fd5a
commit 6c23184
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
13 changes: 10 additions & 3 deletions
13
.github/workflows/gha-go-test.yaml → .github/workflows/go-checks.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,35 @@ | ||
name: Go tests | ||
name: Go checks | ||
|
||
on: [push] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23 | ||
- name: Install dependencies | ||
|
||
- name: Download dependencies | ||
run: go mod download | ||
|
||
- name: Run vet | ||
run: make vet | ||
|
||
- name: Run staticcheck | ||
env: | ||
SC_VERSION: "2024.1.1" | ||
run: | | ||
SC_URL="https://github.com/dominikh/go-tools/releases/download/$SC_VERSION/staticcheck_linux_amd64.tar.gz" | ||
wget -q ${SC_URL} -O - | tar -xzf - --strip-components 1 -C /usr/local/bin staticcheck/staticcheck | ||
make static | ||
- name: Run tests + race condition check | ||
run: make race | ||
|
||
- name: Check Go files are properly formatted | ||
run: test -z $(gofmt -l .) |
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