Extra STATSZ
debugging information
#4727
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: NATS Server Testing | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go: ["1.21"] | |
env: | |
GOPATH: /home/runner/work/nats-server | |
GO111MODULE: "on" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: src/github.com/nats-io/nats-server | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{matrix.go}} | |
- name: Install deps | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.53.3 | |
- name: Lint | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
run: | | |
golangci-lint run | |
- name: Run tests | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
run: | | |
set -e | |
go test -vet=off -i ./... | |
# go test -vet=off -v -run=TestNoRace --failfast -p=1 ./... | |
# coverage via cov.sh disabled while just testing the waters | |
# Also disable race since we are overwhelming the GHA runners. | |
go test -vet=off -v -p=1 --failfast ./... | |
set +e |