Skip to content

Commit

Permalink
Add test coverage pipeline step (DI-Tony-Reed#4)
Browse files Browse the repository at this point in the history
* test WIP

* Update coverage badge

* add coverage echo for testing

* update if statement

* update if statement

* Update coverage badge

* update shield color

* Update coverage badge

* update readme.md directly rather than a separate md

* update workflow to remove redundant steps

* update  shell var & add baseline coverage badge

* update badge to something wrong for pipeline to fix as test

* debug

* update markdown

* debug

* debug

* update syntax

* update syntax

* Update coverage badge to %

* finish workflow

---------

Co-authored-by: GitHub Actions <[email protected]>
Co-authored-by: GitHub Action <[email protected]>
  • Loading branch information
3 people authored Oct 14, 2024
1 parent 81e5ec9 commit b8235e4
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/update-tests-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Update Tests Coverage

on:
push:
branches: [ "main" ]

jobs:

build:
name: Go test coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'

- name: Install dependencies
run: go get .

- name: Build
run: go build -v ./...

- name: Run tests and generate coverage badge
id: badge
run: |
go test -coverprofile=coverage.out ./...
COVERAGE=$(go tool cover -func=coverage.out | grep total | awk '{print $3}' | sed 's/%//')
echo "Coverage: $COVERAGE"
COLOR="gray"
if (( $(echo "$COVERAGE < 50" | bc -l) )); then
COLOR="red"
elif (( $(echo "$COVERAGE >= 50 && $COVERAGE < 80" | bc -l) )); then
COLOR="yellow"
elif (( $(echo "$COVERAGE >= 80 && $COVERAGE < 90" | bc -l) )); then
COLOR="green"
elif (( $(echo "$COVERAGE >= 90" | bc -l) )); then
COLOR="brightgreen"
fi
BADGE_MARKDOWN="![Coverage Badge](https://img.shields.io/badge/Coverage-${COVERAGE}%25-${COLOR}.svg)"
sed -i "s|!\[Coverage Badge\](.*)|$BADGE_MARKDOWN|g" README.md
- name: Commit coverage badge
continue-on-error: true
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add README.md
if ! git diff-index --quiet HEAD --; then
git commit -m "Update coverage badge to $COVERAGE%"
git push
else
echo "No changes to commit."
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Tests](https://github.com/DI-Tony-Reed/JSONDiff/actions/workflows/tests.yaml/badge.svg)](https://github.com/DI-Tony-Reed/JSONDiff/actions/workflows/tests.yaml)
![Coverage Badge](https://img.shields.io/badge/Coverage-93.8%25-brightgreen.svg)

# What is this
This tool accepts two JSON Snyk scans and returns the difference between them. It utilizes a slightly modified version of https://github.com/hezro/snyk-code-pr-diff for the comparison.
Expand Down

0 comments on commit b8235e4

Please sign in to comment.