Skip to content

Commit

Permalink
Run and upload gametest results on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
altrisi authored Jun 26, 2024
1 parent 1675edf commit 6833c63
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
cache: 'gradle'
- name: Grant execute permission to gradlew
run: chmod +x gradlew
- name: Build with Gradle
- name: Build and run Gametest with Gradle
run: ./gradlew build
- uses: actions/upload-artifact@v4
with:
name: "Compiled artifacts for Pull Request #${{github.event.number}}"
path: build/libs
- uses: actions/upload-artifact@v4
if: always()
with:
name: gametest-results
path: build/junit.xml

0 comments on commit 6833c63

Please sign in to comment.