diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3b2a6db..f2b18991 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,3 +27,8 @@ jobs: with: name: clientcommands-snapshot path: build/libs/ + - uses: actions/upload-artifact@v3 + if: always() + with: + name: test-results + path: build/reports/ diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6e19beb3..f334388a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,3 +20,8 @@ jobs: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} - run: ./gradlew test --stacktrace --no-daemon + - uses: actions/upload-artifact@v3 + if: always() + with: + name: test-results + path: build/reports/ \ No newline at end of file