-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update go.mod, CI, coverage, badges (#4)
- Loading branch information
Showing
4 changed files
with
77 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Go coverage badge # The name of the workflow that will appear on Github | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
go: [1.23] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
|
||
- name: Build | ||
run: go install | ||
|
||
- name: Test | ||
run: | | ||
go test -v -cover ./... -coverprofile coverage.out -coverpkg ./... | ||
go tool cover -func coverage.out -o coverage.out # Replaces coverage.out with the analysis of coverage.out | ||
- name: Go Coverage Badge | ||
uses: tj-actions/coverage-badge-go@v2 | ||
if: ${{ runner.os == 'Linux' && matrix.go == '1.23' }} # Runs this on only one of the ci builds. | ||
with: | ||
green: 80 | ||
filename: coverage.out | ||
link: https://github.com/sgreben/flagvar/actions/workflows/gocover.yaml | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
id: auto-commit-action | ||
with: | ||
commit_message: Apply Code Coverage Badge | ||
skip_fetch: true | ||
skip_checkout: true | ||
file_pattern: ./README.md | ||
|
||
- name: Push Changes | ||
if: steps.auto-commit-action.outputs.changes_detected == 'true' | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ github.token }} | ||
branch: ${{ github.ref }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/sgreben/flagvar | ||
|
||
go 1.14 | ||
go 1.23 | ||
|
||
require github.com/gobwas/glob v0.2.3 |