Skip to content

chore: Upgrade golangci-lint to 2.4.0 (#78) #285

chore: Upgrade golangci-lint to 2.4.0 (#78)

chore: Upgrade golangci-lint to 2.4.0 (#78) #285

Workflow file for this run

on: [push]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: 1.24.6
- name: Lint
uses: golangci/[email protected]
with:
version: v2.4.0
- name: Format check
run: make fmt-check
- name: Static analysis
run: go vet ./...
- name: Test
run: go test -race -coverprofile=coverage.out ./...
- name: Upload test coverage report
uses: codecov/[email protected]
with:
file: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}