Merge branch 'master' into nv/gha-deps-step #4817
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: Go tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Install dependencies | |
run: go mod download | |
- name: Run staticcheck | |
env: | |
SC_VERSION: "2024.1.1" | |
run: | | |
make generate | |
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 vet | |
run: make vet | |
- name: Run tests + race condition check | |
run: make race | |
- name: Check Go files are properly formatted | |
run: test -z $(gofmt -l .) |