mirror of
https://github.com/redis/go-redis.git
synced 2025-09-05 20:24:00 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
473 B
YAML
29 lines
473 B
YAML
name: golangci-lint
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- master
|
|
- main
|
|
- v9
|
|
- v9.8
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
|
|
|
jobs:
|
|
golangci:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v8.0.0
|
|
with:
|
|
verify: true
|
|
|