Skip to content

merge classic-terra v2.3.0 #598

merge classic-terra v2.3.0

merge classic-terra v2.3.0 #598

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- "release/**"
pull_request:
permissions:
contents: read
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.51.2
args: --timeout 10m
github-token: ${{ secrets.github_token }}