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