Skip to content

chore(deps): Update module github.com/bddjr/hlfhr to v1.1.3 (#303) #1421

chore(deps): Update module github.com/bddjr/hlfhr to v1.1.3 (#303)

chore(deps): Update module github.com/bddjr/hlfhr to v1.1.3 (#303) #1421

Workflow file for this run

name: Codecov
on:
push:
branches:
- main
pull_request:
jobs:
codecov:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
cache: true
go-version: 'stable'
- name: Install dependencies
run: go mod tidy
- name: Run tests with coverage
run: sudo go test -v -coverprofile="coverage.out" ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.out
token: ${{ secrets.CODECOV }}