chore(deps): update module github.com/redis/go-redis/v9 to v9.7.0 #253
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: Lint Go | |
# run only if go-files is changed | |
on: | |
push: | |
paths: | |
- '**.go' | |
- '**.mod' | |
- '**.sum' | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.2.2 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- name: Run golangci | |
uses: golangci/golangci-lint-action@v6.1.1 | |
with: | |
args: --timeout 5m |