Skip to content

Allow add of labels to clusterrole #1733

Allow add of labels to clusterrole

Allow add of labels to clusterrole #1733

Workflow file for this run

name: test and lint
on:
pull_request:
paths-ignore:
- 'CODE_OF_CONDUCT.md'
- 'README.md'
- 'Contributing.md'
- '.github/workflows/**'
workflow_call:
push:
paths-ignore:
- '.github/workflows/**'
branches:
- main
permissions:
contents: read # for actions/checkout to fetch code
jobs:
run-test-suite:
runs-on: large_runner
steps:
- name: Self Hosted Runner Post Job Cleanup Action
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version-file: '${{ github.workspace }}/go.mod'
- name: Restore Go cache
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
with:
path: /home/runner/work/_temp/_github_home/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run lint
run: make lint
- name: Run tests
run: make test