Skip to content

Commit 42becd5

Browse files
committed
Add Github Action
1 parent ed64507 commit 42becd5

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Gem Main Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test_jdk:
7+
name: Linux (JDK ${{ matrix.java }})
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
java: [1.8, 11, 13, 14-ea]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-java@v1
16+
with:
17+
java-version: ${{ matrix.java }}
18+
- name: Verify
19+
run: ./mvnw verify -B --no-transfer-progress -V

0 commit comments

Comments
 (0)