Setting per cluster for mountpoints in the filesystem metrics #10709
Workflow file for this run
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
name: Check License Header | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
css: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.18.0" | |
- name: Install addlicense | |
run: | | |
export PATH=${PATH}:`go env GOPATH`/bin | |
go install github.com/google/[email protected] | |
- name: Check license headers | |
run: | | |
set -e | |
export PATH=${PATH}:`go env GOPATH`/bin | |
addlicense -check -l mit -c "OpenLens Authors" packages/*/src/**/*.?css |