Skip to content

Bump golangci/golangci-lint-action from 3.7.1 to 4.0.0 (#123) #25

Bump golangci/golangci-lint-action from 3.7.1 to 4.0.0 (#123)

Bump golangci/golangci-lint-action from 3.7.1 to 4.0.0 (#123) #25

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@v4
if: success() || failure()
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
files: ./coverage.out
move_coverage_to_trash: true