Skip to content

Commit 66edd67

Browse files
[b440295519] test all the modules in GitHub actions (#950)
* test all the modules * add protoc to GitHub actions * Test modules one by one * fix gradle.yml
1 parent 5c42ae7 commit 66edd67

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

.github/workflows/gradle.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
contents: read
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- name: Checkout latest code
18+
uses: actions/checkout@v4
19+
1820
- name: Set up JDK 8
1921
uses: actions/setup-java@v4
2022
with:
@@ -26,5 +28,19 @@ jobs:
2628
- name: Setup Gradle
2729
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
2830

29-
- name: Test
30-
run: ./gradlew -Pci :dumper:app:test
31+
- name: Setup Protobuf
32+
uses: arduino/setup-protoc@v3
33+
with:
34+
repo-token: ${{ secrets.GITHUB_TOKEN }}
35+
36+
- name: Clean
37+
run: ./gradlew -Pci clean
38+
39+
- name: Test Dumper
40+
run: ./gradlew -Pci :dumper:app:test
41+
42+
- name: Test DTS transfer
43+
run: ./gradlew -Pci :dts-transfer-status:app:test
44+
45+
- name: Test Permissions migration
46+
run: ./gradlew -Pci :permissions-migration:app:test

0 commit comments

Comments
 (0)