Bump actions/checkout from 6 to 7 #365
Workflow file for this run
This file contains hidden or 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@v7 | |
| with: | |
| go-version: 1.25.x | |
| - name: Checkout Code | |
| uses: actions/checkout@v7 | |
| - name: Calc coverage | |
| run: go test ./... -v -covermode=count -coverprofile=coverage.out | |
| - name: Convert coverage to lcov | |
| uses: jandelgado/gcov2lcov-action@v1.2.0 | |
| - name: Enforce Min Coverage | |
| uses: VeryGoodOpenSource/very_good_coverage@v3.0.0 | |
| with: | |
| path: "coverage.lcov" | |
| min_coverage: 70 |