Bump github.com/hochfrequenz/go-bo4e from 0.28.0 to 0.29.0 #527
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: coverage | |
on: | |
push: | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
if: success() | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.x | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Calc coverage | |
run: go test ./... -v -covermode=count -coverprofile=coverage.out -p 1 | |
- name: Convert coverage to lcov | |
uses: jandelgado/gcov2lcov-action@v1.1.1 | |
- name: Enforce Min Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v3.0.0 | |
with: | |
path: "coverage.lcov" | |
min_coverage: 70 # the plan is to increase this with time |