Skip to content

ci: Add golangci-lint action #5

ci: Add golangci-lint action

ci: Add golangci-lint action #5

Workflow file for this run

name: Golang Lint
on: [push]
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.20.x
cache-dependency-path: "**/go.sum"
- name: Lint
uses: golangci/golangci-lint-action@v4