Skip to content

feat: Enable linting #1

feat: Enable linting

feat: Enable linting #1

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
branches:
- main
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup go version
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Run golangci-lint via make
run: |
make go-lint