Skip to content

Running tests

Running tests #2429

Workflow file for this run

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 tests
run: make test
- name: Run race condition check
run: make race
- name: Check Go files are properly formatted
run: test -z $(gofmt -l .)