We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff066f8 commit e92e8bfCopy full SHA for e92e8bf
.github/workflows/compile-backend.yml
@@ -1,22 +1,33 @@
1
+
2
+# name
3
name: Compile Java Backend
4
5
+# on
6
on: [push, pull_request]
7
8
+# jobs
9
jobs:
10
+# compile
11
compile-backend:
12
+# runs-on
13
runs-on: ubuntu-latest
14
15
name: Compile Backend Code
16
+# steps
17
steps:
18
+# uses
19
- uses: actions/checkout@v3
20
21
22
- name: Set up JDK
23
uses: actions/setup-java@v4
24
with:
25
distribution: 'temurin'
26
java-version: '17'
27
28
29
- name: Compile with Maven
30
run: |
31
cd app
- mvn clean compile
32
+ ./mvnw clean compile
33
0 commit comments