We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dd8405 commit d2f8652Copy full SHA for d2f8652
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: Build Catalyst
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: Set up JDK 21
19
+ uses: actions/setup-java@v4
20
+ with:
21
+ java-version: '21'
22
+ distribution: 'temurin'
23
24
+ - name: Setup Gradle
25
+ uses: gradle/actions/setup-gradle@v3
26
27
+ - name: Build with Gradle
28
+ # Note: This will fail if HytaleServer.jar is missing.
29
+ # You may need to provide it via a custom mechanism or mock it.
30
+ run: ./gradlew build
0 commit comments