chore(deps): bump dashboard from 295c896
to fee4e58
#863
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: Golang CI | |
on: | |
pull_request: | |
branches: | |
- develop | |
- v1 | |
- v2 | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
jobs: | |
golangci: | |
strategy: | |
matrix: | |
go: ["1.21"] | |
os: [ubuntu-latest] | |
name: lint | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
cache: true | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
args: --timeout 10m | |
only-new-issues: true | |
- name: Verify dependencies | |
run: go mod verify |