Skip to content

feat(zone): implement dynamic ignored records #1327

feat(zone): implement dynamic ignored records

feat(zone): implement dynamic ignored records #1327

Workflow file for this run

---
name: golangci-lint
on:
push:
branches:
- master
paths-ignore:
- .github/**
pull_request:
paths-ignore:
- .github/**
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
args: --issues-exit-code=0 --timeout=3m ./...