Skip to content

fix: Update structure of NetworkPolicy #202

fix: Update structure of NetworkPolicy

fix: Update structure of NetworkPolicy #202

Workflow file for this run

name: linting
on:
push:
paths:
- "**.go"
- go.mod
- go.sum
branches: ["main"]
pull_request:
paths:
- "**.go"
- go.mod
- go.sum
branches: ["main"]
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Verify the dependencies
run: |
go mod verify
go mod download
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.0