Skip to content

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #261

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #261

Workflow file for this run

name: Lint
on:
pull_request:
push:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'revive.toml'
- '.github/workflows/lint.yaml'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Revive
uses: docker://morphy/revive-action:v2
with:
config: revive.toml
- name: Run go vet
run: go vet ./...
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)