Skip to content

Allow sudofn injection into container #635

Allow sudofn injection into container

Allow sudofn injection into container #635

Workflow file for this run

name: Go lint
on:
push:
branches:
- main
- release-*
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
branches:
- main
- release-*
paths:
- '**.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: Go modules cache
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- 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@v4
with:
version: latest
skip-cache: true
only-new-issues: false
args: --verbose