We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 907faf6 + b5fdb55 commit c035281Copy full SHA for c035281
1 file changed
.github/workflows/build.yml
@@ -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
11
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