Skip to content

Commit ade9912

Browse files
committed
- setup github actions.
- update documentations for v4.0 release (NOT YET RELEASED!!).
1 parent ce21100 commit ade9912

14 files changed

+309
-60
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
paths-ignore:
7+
- '**.md'
8+
pull_request:
9+
branches: [ "main" ]
10+
paths-ignore:
11+
- '**.md'
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: set up JDK 17
21+
uses: actions/setup-java@v3
22+
with:
23+
java-version: '17'
24+
distribution: 'temurin'
25+
cache: gradle
26+
27+
- name: Grant execute permission for gradlew
28+
run: chmod +x gradlew
29+
- name: Build with Gradle
30+
run: ./gradlew build

0 commit comments

Comments
 (0)