feat: Test new metric for GPU jobid map #126
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
# This action is synced from https://github.com/prometheus/prometheus | |
name: golangci-lint | |
on: | |
push: | |
paths: | |
- "go.sum" | |
- "go.mod" | |
- "**.go" | |
- "scripts/errcheck_excludes.txt" | |
- ".github/workflows/golangci-lint.yml" | |
- ".golangci.yml" | |
pull_request: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54.2 |