Skip to content

fix: Bug rbac authorization secrets #66

fix: Bug rbac authorization secrets

fix: Bug rbac authorization secrets #66

Workflow file for this run

name: Lint
# This GitHub action runs your tests for each pull request and push.
# Optionally, you can turn it on using a schedule for regular testing.
on:
pull_request:
branches:
- main
paths:
- '**.go'
- '.golangci.yml'
# Testing only needs permissions to read the repository contents.
permissions:
contents: read
jobs:
# Ensure project builds before running testing matrix
lint:
name: GolangCI-Lint
runs-on: macos-14
timeout-minutes: 15
steps:
- uses: actions/checkout@v4 # v3.5.0
- uses: actions/setup-go@v5 # v4.0.0
with:
go-version-file: 'go.mod'
- run: go mod download
- name: Run linters
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
with:
version: latest