Skip to content

Add a CI linter (#6) #4

Add a CI linter (#6)

Add a CI linter (#6) #4

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
metalinter:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.23'
cache: false
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: latest
args: --timeout=5m
working-directory: .
skip-cache: true