Skip to content

chore(deps): bump the github-actions group across 1 directory with 7 updates #77

chore(deps): bump the github-actions group across 1 directory with 7 updates

chore(deps): bump the github-actions group across 1 directory with 7 updates #77

Workflow file for this run

name: Coverage
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
coverage:
name: Test Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: stable
- name: Run tests with coverage
run: go test -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v5
with:
files: coverage.out
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false