Skip to content

ci(deps): bump codecov/codecov-action from 5.4.0 to 5.5.0 #74

ci(deps): bump codecov/codecov-action from 5.4.0 to 5.5.0

ci(deps): bump codecov/codecov-action from 5.4.0 to 5.5.0 #74

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
OUTPUTDIR: coverage
COVERPROFILE: coverage.out
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run tests
run: make test
- name: Upload coverage reports to Codecov
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ env.OUTPUTDIR }}/${{ env.COVERPROFILE }}
flags: unittests
disable_search: true
verbose: true