Skip to content

feat(config): add disabled_tools config option #110

feat(config): add disabled_tools config option

feat(config): add disabled_tools config option #110

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go test ./... -count=1
- run: go test ./... -race -count=1
- run: go vet ./...
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v7
with:
version: v2.8.0
- run: make build
- run: go install golang.org/x/vuln/cmd/govulncheck@latest
- run: govulncheck ./...