chore: sync grafana dashboard and EMQX dashboard #157
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: golangci-lint | |
on: | |
push: | |
paths: | |
- "go.sum" | |
- "go.mod" | |
- "**.go" | |
- ".github/workflows/golangci-lint.yml" | |
- ".golangci.yml" | |
pull_request: | |
paths: | |
- "go.sum" | |
- "go.mod" | |
- "**.go" | |
- ".github/workflows/golangci-lint.yml" | |
- ".golangci.yml" | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- run: go install github.com/google/go-licenses@latest | |
- run: $(go env GOPATH)/bin/go-licenses check . --disallowed_types forbidden,restricted,unknown | |
- name: Lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.51.2 | |
license-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.x' | |
- run: go install github.com/google/go-licenses@latest | |
- run: $(go env GOPATH)/bin/go-licenses check . --disallowed_types forbidden,restricted,unknown |