Update V7 Servers list // Add new server to FrostHeaven category #7816
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Tests | |
on: [pull_request, workflow_dispatch] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
testPR: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run unit tests | |
run: ./gradlew tests:test --stacktrace --rerun | |
- name: Run unit tests and build JAR | |
run: ./gradlew desktop:dist | |
- name: Upload desktop JAR for testing | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Desktop JAR (zipped) | |
path: desktop/build/libs/Mindustry.jar |