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,17 +91,20 @@ jobs:
9191
9292 - name : Prepare app env
9393 run : |
94- php -r 'if (!file_exists("workbench/.env")) { copy("workbench/.env.example", "workbench/.env"); echo ".env created\n"; }'
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
9596 php vendor/bin/testbench key:generate --ansi
9697
9798 - name : Run test suite
98- run : vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
99+ run : |
100+ cd packages/world-plugin
101+ vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
99102
100103 - name : Upload coverage reports to Codecov
101104 # Make sure the Codecov action is only executed once
102105 if : matrix.php == '8.3' && matrix.laravel == '12.*' && matrix.dependency-version == 'prefer-stable' && matrix.shard == 1
103106 uses : codecov/codecov-action@v5
104107 with :
105108 token : ${{ secrets.CODECOV_TOKEN }}
106- files : . /coverage.xml
109+ files : packages/world-plugin /coverage.xml
107110 verbose : true
You can’t perform that action at this time.
0 commit comments