Skip to content

fix: potential lint workflow timeout fix #5

fix: potential lint workflow timeout fix

fix: potential lint workflow timeout fix #5

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: Install dependencies
run: go get -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
working-directory: .
install-mode: "binary"
args: --timeout 5m