Skip to content

build(deps): bump crate-ci/typos from 1.41.0 to 1.43.5 #901

build(deps): bump crate-ci/typos from 1.41.0 to 1.43.5

build(deps): bump crate-ci/typos from 1.41.0 to 1.43.5 #901

Workflow file for this run

name: go
on: [pull_request]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- run: go mod tidy -diff
- run: go vet ./...
- uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --timeout=10m
- uses: dominikh/staticcheck-action@v1
with:
install-go: false
- run: go fix -diff ./... | awk '{print} /\S/ {found=1} END {if (found) exit 1}'
- uses: golang/govulncheck-action@v1
with:
repo-checkout: false
go-version: stable
spell-check:
name: spell-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: crate-ci/typos@v1.43.5
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- run: make test