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