Skip to content

Commit

Permalink
fix file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pelmered committed Sep 26, 2024
1 parent 104fee6 commit 099b8e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ jobs:
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/pest --coverage-clover=coverage.xml
run: vendor/bin/pest --coverage-clover=build/logs/clover.xml
- name: Execute type coverage tests
run: vendor/bin/pest --type-coverage --type-coverage-json=pest-coverage.json
run: vendor/bin/pest --type-coverage --type-coverage-json=build/logs/pest-coverage.json

- name: Upload coverage results
run: |
bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --repo-token ${{ secrets.OTTERWISE_TOKEN }}
bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --type-coverage-file pest-coverage.json
bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --type-coverage-file build/logs/pest-coverage.json

0 comments on commit 099b8e2

Please sign in to comment.