Skip to content

Commit

Permalink
Update test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
2No2Name committed Dec 8, 2024
1 parent b29c6b0 commit 5739aa6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ jobs:
- name: Build with Gradle
run: ./gradlew build

- name: Run Test Server
- name: Run Test Servers
timeout-minutes: 5
run: ./gradlew runAutoTestServer
run: |
./gradlew fabric:runGametestServer &
./gradlew neoforge:runGametestServer &
wait
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Build with Gradle
run: ./gradlew build

- name: Run Test Server
- name: Run Test Servers
timeout-minutes: 5
run: ./gradlew runAutoTestServer
run: |
./gradlew fabric:runGametestServer &
./gradlew neoforge:runGametestServer &
wait

0 comments on commit 5739aa6

Please sign in to comment.