Skip to content

Add enable_well_known_secret_masking field #247

Add enable_well_known_secret_masking field

Add enable_well_known_secret_masking field #247

Workflow file for this run

name: Golangci-lint
on:
pull_request:
branches: [main]
jobs:
lint:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Check formatting using gofmt
run: gofmt -s -l -d .
- name: Run golangci-lint
uses: reviewdog/action-golangci-lint@v2
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: { reporter: github-pr-review }