Skip to content

Commit 70acee5

Browse files
committed
GitHub Actions build
1 parent eac39c5 commit 70acee5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)