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 898f024 commit f975d95Copy full SHA for f975d95
.github/workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: build
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ java: [ '8' ]
16
+ architecture: [ 'x64' ]
17
+ name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: Setup JDK
21
+ uses: actions/setup-java@v4
22
+ with:
23
+ distribution: 'temurin'
24
+ java-version: ${{ matrix.java }}
25
+ architecture: ${{ matrix.architecture }}
26
+ cache: 'gradle'
27
28
+ - name: Build with Gradle
29
+ run: ./gradlew asciidoc
0 commit comments