Skip to content

Fix typos in README.md #124

Fix typos in README.md

Fix typos in README.md #124

Workflow file for this run

name: Analysis
on: [push, pull_request]
permissions:
contents: read
jobs:
static_analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Install static analysis tools
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
go install golang.org/x/vuln/cmd/govulncheck@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
go install mvdan.cc/gofumpt@latest
- name: Vet
run: go vet ./...
- name: Gofumpt
run: gofumpt -d -e .
- name: Gocyclo
run: gocyclo -over 15 .
- name: Staticcheck
run: staticcheck ./...
- name: Gosec
run: gosec ./...
- name: Vulncheck
run: govulncheck ./...