Try to get the Github Actions to register as a Status check

This commit is contained in:
Suzanne Soy 2021-07-28 15:44:53 +01:00
parent f6cf0a64b0
commit 481a22dad4

View File

@ -91,7 +91,9 @@ jobs:
run: if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info.
status-check:
needs: build
steps:
- name: Create status check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -102,5 +104,5 @@ jobs:
-X POST \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${github.repository}/check-runs \
https://api.github.com/repos/${{github.repository}}/check-runs \
-d '{"name":"build", "head_sha": "'"$BUILD_COMMIT"'", "status": "completed", "conclusion": "success" }'