Skip to content

github-actions(deps): bump codecov/codecov-action from 3 to 4 #149

github-actions(deps): bump codecov/codecov-action from 3 to 4

github-actions(deps): bump codecov/codecov-action from 3 to 4 #149

Workflow file for this run

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