Skip to content

chore: remove settings configuration, fix example workflow #8

chore: remove settings configuration, fix example workflow

chore: remove settings configuration, fix example workflow #8

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
paths:
- '**.go'
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- uses: actions/checkout@v4
- name: format
run: make format && git diff --exit-code
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.7.0