We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0302c39 commit 5b3e538Copy full SHA for 5b3e538
.github/workflows/continuous-integration.yml
@@ -119,8 +119,7 @@ jobs:
119
php: [8.1, 8.2, 8.3]
120
121
steps:
122
- - name: Checkout Code
123
- uses: actions/checkout@v2
+ - uses: actions/[email protected]
124
125
- uses: shivammathur/setup-php@v2
126
with:
@@ -133,13 +132,13 @@ jobs:
133
132
uses: php-actions/composer@v6
134
135
- name: PHPUnit Tests
136
- run: ./vendor/bin/phpunit --coverage-clover ./vendor/coverage.xml
+ run: ./vendor/bin/phpunit --coverage-clover ./coverage.xml
137
138
- name: Upload to Codecov
139
uses: codecov/codecov-action@v2
140
141
token: ${{ secrets.CODE_COV_TOKEN }}
142
- files: ./vendor/coverage.xml
+ files: ./coverage.xml
143
verbose: true
144
145
- name: Publish Test Report
0 commit comments