Skip to content

Bump the aws group with 3 updates (#156) #329

Bump the aws group with 3 updates (#156)

Bump the aws group with 3 updates (#156) #329

Workflow file for this run

name: lint
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- README.md
- "releases/**"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Set golangci-lint version
run: |
LINT_VERSION=$(head -n 1 ".golangci.yml" | tr -d '# ')
echo "LINT_VERSION=${LINT_VERSION}" >> $GITHUB_ENV
- name: Go linter
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.LINT_VERSION }}
args: --timeout=30m
install-mode: binary
verify: false