Skip to content

Commit 01a4762

Browse files
committed
Build with github actions
1 parent 8bed445 commit 01a4762

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Java CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
java_version: [1.8]
13+
os: [windows-latest, macOS-latest, ubuntu-latest]
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v1
18+
- name: Set up JDK ${{ matrix.java_version }}
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: ${{ matrix.java_version }}
22+
- name: Maven Build
23+
run: ./etc/travis.sh

0 commit comments

Comments
 (0)