Skip to content

Commit ed62824

Browse files
committed
fixing build
1 parent fe1353f commit ed62824

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/master.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
java-version: '17'
3535

3636
- name: Run tests
37-
run: ./${{ matrix.project }}/gradlew check
37+
working-directory: ${{ matrix.project }}
38+
run: ./gradlew check
3839

3940
- name: Bundle the build report
4041
if: failure()
@@ -70,7 +71,8 @@ jobs:
7071
java-version: '17'
7172

7273
- name: Run macos tests
73-
run: ./${{ matrix.project }}/gradlew macosX64Test
74+
working-directory: ${{ matrix.project }}
75+
run: ./gradlew check
7476

7577
- name: Bundle the build report
7678
if: failure()
@@ -106,7 +108,8 @@ jobs:
106108
java-version: '17'
107109

108110
- name: Run tests
109-
run: ./${{ matrix.project }}/gradlew mingwX64Test
111+
rorking-directory: ${{ matrix.project }}
112+
run: ./gradlew check
110113

111114
- name: Bundle the build report
112115
if: failure()

0 commit comments

Comments
 (0)