From 51878e0193e1f4df2e9e50de56c1ca039081acf6 Mon Sep 17 00:00:00 2001 From: Stephan Schroevers Date: Sat, 12 Nov 2022 20:14:23 +0100 Subject: [PATCH] Final tweaks --- .github/workflows/pitest-analyze-pr.yml | 4 ++-- .github/workflows/pitest-update-pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pitest-analyze-pr.yml b/.github/workflows/pitest-analyze-pr.yml index a55279ede5b..a3fb58015c3 100644 --- a/.github/workflows/pitest-analyze-pr.yml +++ b/.github/workflows/pitest-analyze-pr.yml @@ -1,4 +1,4 @@ -# Performs mutation test analysis on the files changed by a pull request and +# Performs mutation testing analysis on the files changed by a pull request and # uploads the results. The associated PR is subsequently updated by the # `pitest-update-pr.yml` workflow. See https://blog.pitest.org/oss-pitest-pr/ # for details. @@ -52,6 +52,6 @@ jobs: uses: actions/download-artifact@v3.0.1 with: name: pitest-reports - path: target/pit-reports-ci + path: ./target/pit-reports-ci - name: Update PR run: mvn -DrepoToken="${{ secrets.GITHUB_TOKEN }}" pitest-github:updatePR diff --git a/.github/workflows/pitest-update-pr.yml b/.github/workflows/pitest-update-pr.yml index bc81d9b9a23..2a4895b6f3b 100644 --- a/.github/workflows/pitest-update-pr.yml +++ b/.github/workflows/pitest-update-pr.yml @@ -1,4 +1,4 @@ -# Updates a pull request based on the corresponding mutation test analysis +# Updates a pull request based on the corresponding mutation testing analysis # performed by the `pitest-analyze-pr.yml` workflow. See # https://blog.pitest.org/oss-pitest-pr/ for details. name: "Mutation testing: post results"