feat: extract out methods for determining the route name and extra ro… #111
This file contains hidden or 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: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ 8.4, 8.3, 8.2 ] | |
| laravel: [ 12.*, 11.*, 10.* ] | |
| stability: [ prefer-lowest, prefer-stable ] | |
| include: | |
| - laravel: 12.* | |
| testbench: 10.* | |
| carbon: 3.* | |
| - laravel: 11.* | |
| testbench: 9.* | |
| carbon: ^2.63 | |
| - laravel: 10.* | |
| testbench: 8.* | |
| carbon: ^2.63 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install SQLite 3 | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install sqlite3 -y | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv | |
| coverage: ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3' && matrix.laravel == '11.*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }} | |
| - name: Install dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update | |
| composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
| - name: Execute tests | |
| run: | | |
| vendor/bin/phpunit ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3' && matrix.laravel == '11.*' && matrix.stability == 'prefer-stable' && '--coverage-clover=clover.xml' || '' }} | |
| - name: Make code coverage badge | |
| if: startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3' && matrix.laravel == '11.*' && matrix.stability == 'prefer-stable' | |
| uses: timkrase/phpunit-coverage-badge@v1.2.1 | |
| with: | |
| coverage_badge_path: .github/coverage.svg | |
| push_badge: true | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} |