-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (66 loc) · 2 KB
/
coverage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: coverage
on:
repository_dispatch:
types: [trigger-coverage]
jobs:
coverage:
name: Generate badge
runs-on: ubuntu-latest
steps:
- name: Checkout the same code
uses: actions/checkout@v2
with:
ref: ${{ github.event.client_payload.sha }}
- name: Download artifact - coverage from tests
uses: dawidd6/action-download-artifact@v2
with:
workflow: tests.yml
workflow_conclusion: success
name: coverage
- name: Extract total coverage
id: total_cov
run: |
total=$(grep -oP "TOTAL.* \K\d+(?=%)" coverage.txt)
echo ::set-output name=total::$total
echo "Total coverage: ${total}%"
- name: Create badge
id: create_url
run: |
TOTAL=${{ steps.total_cov.outputs.total }}
if [[ $TOTAL -gt 90 ]]
then
color=brightgreen
elif [[ $TOTAL -gt 80 ]]
then
color=green
elif [[ $TOTAL -gt 70 ]]
then
color=yellowgreen
elif [[ $TOTAL -gt 60 ]]
then
color=yellow
elif [[ $TOTAL -gt 50 ]]
then
color=orange
else
color=red
fi
url="https://img.shields.io/static/v1?label=coverage&message=${TOTAL}%&color=${color}"
echo ::set-output name=url::$url
echo "shields.io url: ${url}"
- name: Update README.md
uses: wow-actions/add-badges@v1
env:
repo_url: ${{ github.event.repository.html_url }}
repo_name: ${{ github.event.repository.name }}
repo_owner: ${{ github.event.repository.owner.login }}
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
badges: |
[
{
"badge": "${{ steps.create_url.outputs.url }}",
"alt": "Coverage",
"link": "${{ steps.create_url.outputs.url }}"
}
]