Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 44d006a

Browse files
committedJun 12, 2021
Setup Github Actions workflow
1 parent ce059f4 commit 44d006a

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed
 

‎.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
16+
- name: Set Up JDK
17+
uses: actions/setup-java@v1
18+
with:
19+
java-version: 1.8
20+
21+
- name: Run Tests
22+
run: ./gradlew test
23+
24+
- name: Build Project
25+
run: ./gradlew assemble

‎.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.