Skip to content

build(deps): bump golangci/golangci-lint-action from 3.7.0 to 5.0.0 #48

build(deps): bump golangci/golangci-lint-action from 3.7.0 to 5.0.0

build(deps): bump golangci/golangci-lint-action from 3.7.0 to 5.0.0 #48

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: success() || failure()
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
files: ./coverage.out
move_coverage_to_trash: true