chore(deps): bump github.com/cayleygraph/cayley from 0.7.7-0.20240706181042-81dcd7d73e45 to 0.7.7 #299
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: Go Linter | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22 | |
cache: false | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --issues-exit-code=1 --timeout=10m | |
only-new-issues: true | |
skip-pkg-cache: true | |
skip-build-cache: true | |