Skip to content

Commit 2395a60

Browse files
committed
Add Github Actions
1 parent 6c86c73 commit 2395a60

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: "Checkout sources"
10+
uses: actions/checkout@v1
11+
- name: "Setup Java"
12+
uses: actions/setup-java@v1
13+
with:
14+
java-version: 13
15+
- name: "Build all modules"
16+
run: chmod 755 build-all.sh && ./build-all.sh

0 commit comments

Comments
 (0)