Ajout CI Coverage #9

Merged
mcmuzzle merged 39 commits from CIQuality into main 2024-08-29 17:43:05 +00:00
Showing only changes of commit 097b7e4340 - Show all commits

View File

@@ -23,8 +23,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out the code - name: Check out the code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
@@ -71,7 +69,21 @@ jobs:
with: with:
message: | message: |
Release ${{ github.sha }} Release ${{ github.sha }}
- name: Comment on Gitea PR
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
GITEA_URL: https://gitea.borealian.ovh
REPO_OWNER: mcmuzzle
REPO_NAME: LittleTown
PR_NUMBER: ${{ github.event.pull_request.number }}
run: |
curl -X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \
-d '{"body": "Merci pour votre contribution !"}' \
${GITEA_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${PR_NUMBER}/comments
- name: Upload Test Result Files - name: Upload Test Result Files
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: