mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-08 14:24:52 +07:00
22 lines
491 B
YAML
22 lines
491 B
YAML
name: Pull Request Tests
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
buildJava14:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 14
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 14
|
|
- name: Run unit tests and build JAR
|
|
run: ./gradlew test desktop:dist
|
|
- name: Upload desktop JAR for testing
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Desktop JAR (zipped)
|
|
path: desktop/build/libs/Mindustry.jar
|