Skip to content

chore(deps): update module github.com/golangci/golangci-lint/v2 to v2.6.0 #988

chore(deps): update module github.com/golangci/golangci-lint/v2 to v2.6.0

chore(deps): update module github.com/golangci/golangci-lint/v2 to v2.6.0 #988

Workflow file for this run

---
name: Lint and test
# Run for all pushes to main and pull requests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
merge_group:
jobs:
lint-and-test:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- name: Run go tests and generate coverage report
run: make test
- name: Upload coverage report
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.out
flags: unittests
name: codecov-umbrella