Skip to content

build(deps): bump golang.org/x/text from 0.18.0 to 0.19.0 #294

build(deps): bump golang.org/x/text from 0.18.0 to 0.19.0

build(deps): bump golang.org/x/text from 0.18.0 to 0.19.0 #294

name: Go lint
on:
push:
branches:
- main
- release-*
paths:
- '.github/workflows/golangci-lint.yaml'
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
branches:
- main
- release-*
paths:
- '.github/workflows/golangci-lint.yaml'
- '**.go'
- 'go.mod'
- 'go.sum'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Check go.mod/go.sum to be consistent
run: go mod tidy -v && git diff --exit-code
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
only-new-issues: false
args: --verbose