From 47c724616f3ae00ef46800640847a6a1f81bacb3 Mon Sep 17 00:00:00 2001 From: Jean Luc Szpyrka Date: Mon, 16 Sep 2024 11:14:21 +0200 Subject: [PATCH] cannot have run:/uses: directive in same job --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bb01d295..ec616d7ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,11 +34,13 @@ jobs: run: ./gradlew clean assemble - name: Gradle tests + run: ./gradlew test || /usr/bin/true + + - name: Get test artifacts uses: actions/upload-artifact@v4 with: name: Package path: build/reports/tests/test - run: ./gradlew test - name: Final Step id: ci-final-step