Skip to content

Commit a57777e

Browse files
committed
👷 Adding ci github action
1 parent 1e148a3 commit a57777e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
java: [ 8, 12, 15 ]
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set Java
14+
uses: actions/setup-java@v1
15+
with:
16+
java-version: ${{ matrix.java }}
17+
- name: Build with Maven
18+
run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true

0 commit comments

Comments
 (0)