Skip to content

Improve http runner protectoin #38

Improve http runner protectoin

Improve http runner protectoin #38

Workflow file for this run

---
name: tests
on:
push:
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- uses: actions/checkout@v3
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v cmd/*
- name: Run go vet
run: go vet ./...
- name: Install golint
run: go install golang.org/x/lint/golint@latest
- name: Run golint
run: golint ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...
- name: Run tests
run: go test -race -vet=off ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.54