File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,20 +91,17 @@ jobs:
9191
9292 - name : Prepare app env
9393 run : |
94- php -r 'if (!file_exists("packages/world-plugin/workbench/.env")) { copy("packages/world-plugin/workbench/.env.example", "packages/world-plugin/workbench/.env"); echo ".env created\n"; }'
95- cd packages/world-plugin
94+ php -r 'if (!file_exists("workbench/.env")) { copy("workbench/.env.example", "workbench/.env"); echo ".env created\n"; }'
9695 php vendor/bin/testbench key:generate --ansi
9796
9897 - name : Run test suite
99- run : |
100- cd packages/world-plugin
101- vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
98+ run : vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
10299
103100 - name : Upload coverage reports to Codecov
104101 # Make sure the Codecov action is only executed once
105102 if : matrix.php == '8.3' && matrix.laravel == '12.*' && matrix.dependency-version == 'prefer-stable' && matrix.shard == 1
106103 uses : codecov/codecov-action@v5
107104 with :
108105 token : ${{ secrets.CODECOV_TOKEN }}
109- files : packages/world-plugin /coverage.xml
106+ files : . /coverage.xml
110107 verbose : true
You can’t perform that action at this time.
0 commit comments