Skip to content

⬆️ Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #1781

⬆️ Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1

⬆️ Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #1781

Workflow file for this run

name: Coverage
on:
push:
branches: [ main, dev, feature/* ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v5
with:
go-version-file: ./go.mod
- name: Run coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)