Skip to content

Commit aebf663

Browse files
authored
Create build.yml
1 parent cc24cd1 commit aebf663

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build CI
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+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up JDK
15+
uses: actions/setup-java@v2
16+
with:
17+
distribution: 'zulu'
18+
java-version: '15'
19+
- name: Make gradlew executable
20+
run: chmod +x ./gradlew
21+
- name: Build with Gradle
22+
run: ./gradlew build

0 commit comments

Comments
 (0)