Merge pull request #469 from coder/mafredri/fix-coverage4 #5
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: static | |
on: | |
push: | |
branches: ['master'] | |
workflow_dispatch: | |
# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages. | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./go.mod | |
- run: | | |
./ci/test.sh | |
echo "PERCENT=$(go tool cover -func ./ci/out/coverage.prof | tail -n1 | awk '{print $3}' | tr -d '%')" >> "$GITHUB_OUTPUT" | |
{ | |
echo "HTML<<EOF" | |
cat ./ci/out/coverage.html | |
echo EOF | |
} >> "$GITHUB_OUTPUT" | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: coverage | |
steps: | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Write coverage.html and coverage.svg | |
env: | |
PERCENT: ${{ steps.coverage.outputs.PERCENT }} | |
HTML: ${{ steps.coverage.outputs.HTML }} | |
run: | | |
mkdir -p ./ci/out/static | |
wget -O ./ci/out/static/coverage.svg "https://img.shields.io/badge/coverage-${PERCENT}%25-success" | |
echo "$HTML" > ./ci/out/static/coverage.html | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./ci/out/static/ | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |