diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4329cf..8608e74 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,13 @@ jobs: run: ./gradlew build -x test --stacktrace - name: :test run: ./gradlew test --stacktrace - - name: Upload artifacts + - name: Upload binaries uses: actions/upload-artifact@v3 with: name: ZSON - path: "build/libs/zson-*.jar" + path: "build/libs/*.jar" + - name: Upload test results + uses: actions/upload-artifact@v3 + with: + name: Test Results + path: "build/reports/tests/**" diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7cde53f..8c459c6 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -24,3 +24,8 @@ jobs: with: name: ZSON path: "**/zson-*.jar" + - name: Upload test results + uses: actions/upload-artifact@v3 + with: + name: Test Results + path: "build/reports/tests/**"