Skip to content

performance improvements #18

performance improvements

performance improvements #18

Workflow file for this run

name: Linux
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: "stable"
- name: Run api/service tests
timeout-minutes: 30
run: |
go test -v -count=1 ./...
- name: Run vet, linter, vuln, diff checks
run: |
go vet ./...
go tool staticcheck -checks=all ./...
go tool govulncheck ./...
go fix -diff ./...