aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..aae555a
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,26 @@
+name: Build
+on:
+ - push
+ - pull_request
+
+jobs:
+ build:
+ name: Test
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ name: Checkout repository
+ - name: Set up JDK 17
+ uses: actions/setup-java@v3
+ with:
+ distribution: temurin
+ java-version: 17
+ - name: Set up gradle cache
+ uses: gradle/gradle-build-action@v2
+ - name: Build with gradle
+ run: ./gradlew clean test remapJar --stacktrace
+ - name: Upload build artifact
+ uses: actions/upload-artifact@v3
+ with:
+ path: build/libs/Firmament-*.jar
+