Skip to content

chore(deps): update module github.com/golangci/golangci-lint/v2/cmd/g… #211

chore(deps): update module github.com/golangci/golangci-lint/v2/cmd/g…

chore(deps): update module github.com/golangci/golangci-lint/v2/cmd/g… #211

Workflow file for this run

name: lint_and_test
on:
push:
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ^1.21
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
- name: go mod tidy and install
run: |
go mod tidy
make install-go-tools
- name: build
run: make build
- name: testing
run: make test