fix: Applied license error handling to all ZPA privileged remote access resources #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request] | |
permissions: | |
contents: read | |
pull-requests: read | |
name: Lint | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # needed for `only-new-issues` to compare diffs | |
- name: install go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: go1.22-${{ hashFiles('**/go.sum') }} | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
# args: "--config .golintci.yml" | |
only-new-issues: true | |
skip-cache: true |