github-actions(deps): bump codecov/codecov-action from 3 to 4 #150
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} | |
runs-on: 'ubuntu-latest' | |
strategy: | |
matrix: | |
php: | |
- "8.1" | |
- "8.2" | |
laravel: | |
- "9" | |
- "10" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: ctype, dom, grpc, json, mbstring, openssl, xml, zip, zlib | |
coverage: xdebug | |
- name: Install dependencies | |
run: | | |
composer require -W "illuminate/contracts:^${{ matrix.laravel }}.0" | |
composer require -W --dev orchestra/testbench | |
- name: Setup Problem Matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Run PHPUnit | |
run: vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=test-report.xml --testdox | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v4 |