Merge pull request #9 from panz3r/main #21
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: Go | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.1 | |
- name: Get coverage tool | |
run: | | |
cd src | |
go get golang.org/x/tools/cmd/cover | |
- name: Test | |
run: | | |
cd src | |
go test ./... -coverprofile cover.out | |
go tool cover -func cover.out > covered.txt | |
- name: Get coverage | |
run: | | |
cd src | |
for word in $(cat covered.txt); do total_percent=$word; done | |
echo $total_percent | |
echo "COVERAGE=$total_percent" >> $GITHUB_ENV | |
REF=${{ github.ref }} | |
IFS='/' read -ra PATHS <<< "$REF" | |
BRANCH_NAME="${PATHS[1]}_${PATHS[2]}" | |
echo $BRANCH_NAME | |
echo "BRANCH=$(echo ${BRANCH_NAME})" >> $GITHUB_ENV | |
- name: Create passing badge | |
uses: schneegans/[email protected] | |
if: ${{ env.COVERAGE!=null }} | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: 7a0933f8cba0bddbcc95c8b850e32663 | |
filename: spa-to-http_units_passing__${{ env.BRANCH }}.json | |
label: Tests | |
message: Passed | |
color: green | |
namedLogo: checkmarx | |
- name: Create coverage badge | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: 7a0933f8cba0bddbcc95c8b850e32663 | |
filename: spa-to-http_units_coverage__${{ env.BRANCH }}.json | |
label: Test Coverage | |
message: ${{ env.COVERAGE }} | |
color: green | |
namedLogo: go |