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 ba7099a commit d004124Copy full SHA for d004124
.github/workflows/java-build.yml
@@ -0,0 +1,23 @@
1
+name: Java Build
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
15
+ - name: Set up Java
16
+ uses: actions/setup-java@v3
17
+ with:
18
+ java-version: "17"
19
+ distribution: "temurin"
20
21
+ - name: Compile Java source files
22
+ run: |
23
+ javac *.java
0 commit comments