We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ecca78 commit db9bfeaCopy full SHA for db9bfea
1 file changed
.github/workflows/build-test.yml
@@ -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