Skip to content

Commit 58c37d0

Browse files
committed
fix(ci): use default app path in phpunit workflow
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 8895495 commit 58c37d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/phpunit-sqlite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8787
with:
8888
persist-credentials: false
89-
path: apps-extra/${{ env.APP_NAME }}
89+
path: apps/${{ env.APP_NAME }}
9090

9191
- name: Set up php ${{ matrix.php-versions }}
9292
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
@@ -100,7 +100,7 @@ jobs:
100100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101101

102102
- name: Install app dependencies
103-
working-directory: apps-extra/${{ env.APP_NAME }}
103+
working-directory: apps/${{ env.APP_NAME }}
104104
run: |
105105
composer remove nextcloud/ocp --dev --no-scripts
106106
composer i
@@ -118,7 +118,7 @@ jobs:
118118
./occ app:enable --force ${{ env.APP_NAME }}
119119
120120
- name: Run PHPUnit suites
121-
working-directory: apps-extra/${{ env.APP_NAME }}
121+
working-directory: apps/${{ env.APP_NAME }}
122122
run: composer run test:php
123123

124124
- name: Print logs

0 commit comments

Comments
 (0)