Skip to content

Commit

Permalink
Additional disabling
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jul 8, 2023
1 parent 48864e1 commit 2da3286
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,21 @@ jobs:
run: ./gradlew --version
- name: Run tests
run: ./gradlew test
# TODO: Having issues with 403 response codes, likely due to our repo being private
# - name: Upload test results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: Test artifacts
# retention-days: 21
# path: |
# **/TEST-*
# **/hs_err_pid*
- name: Upload test results
if: never() # TODO: Revert to 'always()' after the repo is public
uses: actions/upload-artifact@v3
with:
name: Test artifacts
retention-days: 21
path: |
**/TEST-*
**/hs_err_pid*
# Publishes the test results of 'test'
publish-test-results:
name: Publish tests results
needs: test
if: always()
if: never() # TODO: Revert to 'always()' after the repo is public
runs-on: ubuntu-latest
permissions:
checks: write
Expand Down

0 comments on commit 2da3286

Please sign in to comment.