Skip to content

Commit db9bfea

Browse files
committed
add test build github action
1 parent 6ecca78 commit db9bfea

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build Test
2+
3+
on:
4+
push:
5+
branches: [ master, build-test ]
6+
pull_request:
7+
branches: [ master ]
8+
# run weekly to verify latest jadx snapshot version
9+
schedule:
10+
- cron: "22 2 * * 2"
11+
12+
jobs:
13+
tests:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Set up JDK
19+
uses: actions/setup-java@v4
20+
with:
21+
distribution: temurin
22+
java-version: 21
23+
24+
- name: Setup Gradle
25+
uses: gradle/actions/setup-gradle@v4
26+
27+
- name: Build
28+
run: ./gradlew build

0 commit comments

Comments
 (0)