Skip to content

Commit 1b67d98

Browse files
sullistschuchortdev
authored andcommitted
add GitHub CI workflow
1 parent 7ac948a commit 1b67d98

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Java CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
java: [ '1.8.0', '11.0.x' ]
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Set up JDK
12+
uses: actions/setup-java@v1
13+
with:
14+
java-version: ${{ matrix.java }}
15+
- name: print Java version
16+
run: java -version
17+
- name: Build with Gradle
18+
run: ./gradlew clean build

0 commit comments

Comments
 (0)