From c2972f78752591fe9f02b60773515bf2b7d8d56d Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Tue, 28 Nov 2023 02:11:51 +0100 Subject: [PATCH] Fix workflow config --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 7ab7b37..1c4d30d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -37,7 +37,7 @@ jobs: - name: Install PlatformIO Core run: pip install --upgrade platformio - name: Run unit tests - run: mkdir -p junit-reports && pio test -e native_test_only --junit-output-path --junit-output-path junit-reports/ + run: mkdir -p junit-reports && pio test -e native_test_only --junit-output-path junit-reports/ - name: Publish Test Report uses: mikepenz/action-junit-report@v4 if: success() || failure() # always run even if the previous step fails