Skip to content

Commit b5fdb55

Browse files
committed
add: build action.
1 parent d814b43 commit b5fdb55

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build source
2+
3+
on:
4+
pull_request:
5+
types: [ opened, synchronize, reopened ]
6+
paths:
7+
- "dfc/**"
8+
push:
9+
branches: [ master ]
10+
paths:
11+
- "dfc/**"
12+
13+
jobs:
14+
compile:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Set up JDK
21+
uses: actions/setup-java@v4
22+
with:
23+
distribution: "temurin"
24+
java-version: "17"
25+
cache: "gradle"
26+
27+
- name: Build DFC
28+
run: ./gradlew :dfc:assemble

0 commit comments

Comments
 (0)