We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc76b39 commit 444ca48Copy full SHA for 444ca48
.github/workflows/ant.yml
@@ -16,11 +16,21 @@ jobs:
16
runs-on: ubuntu-latest
17
18
steps:
19
- - uses: actions/checkout@v4
+ - name: Checkout Javaforce
20
+ uses: actions/checkout@v4
21
+ with:
22
+ repository: pquiring/javaforce
23
+ - name: Checkout jfCraft
24
25
26
+ path: games/jfcraft
27
- name: Set up JDK 17
28
uses: actions/setup-java@v4
29
with:
30
java-version: '17'
31
distribution: 'temurin'
- - name: Build with Ant
32
+ - name: Build JavaForce with Ant
33
+ run: ant -noinput -buildfile build.xml
34
+ - name: Build jfCraft with Ant
35
run: ant -noinput -buildfile build.xml
36
+ working-directory: games/jfcraft
0 commit comments