Skip to content

chore: release v1.6.0 #118

chore: release v1.6.0

chore: release v1.6.0 #118

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.6.1
args: --timeout=5m
format:
name: format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Check formatting
run: |
go fmt ./...
git diff --exit-code
- name: Run go vet
run: go vet ./...