テスト結果レポート生成
All checks were successful
Python Test / python-test (push) Successful in 10s

This commit is contained in:
ry.yamafuji 2025-12-04 12:42:29 +09:00
parent e34abe9eee
commit 00ea7cd2fe

View File

@ -86,6 +86,14 @@ jobs:
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add README.md coverage.svg
# 変更があるかどうか確認(ステージング領域)
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "Update coverage report"
git push https://actions-bot:${{ secrets.CICD_GITEA_TOKEN }}@gitea.pglikers.com/data-science/cloud-run-job-base.git coverage-report --force
fi