Skip to content

Merge pull request #31 from lazygophers/luoxin #65

Merge pull request #31 from lazygophers/luoxin

Merge pull request #31 from lazygophers/luoxin #65

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- master
- main
pull_request:
permissions:
contents: read
pull-requests: read
checks: write
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false
- name: golangci-lint
uses: golangci/[email protected]
with:
args: --timeout=30m --issues-exit-code=0
skip-cache: false
skip-pkg-cache: false
skip-build-cache: false
install-mode: "goinstall"