Running tests #4715
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 | |
run-name: Running 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: Run staticcheck | |
env: | |
SC_VERSION: "2024.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 | |
run: make test | |
- name: Run race condition check | |
run: make race | |
- name: Check Go files are properly formatted | |
run: test -z $(gofmt -l .) |