Skip to content

chore(deps): update dependency lint-staged to v17 #878

chore(deps): update dependency lint-staged to v17

chore(deps): update dependency lint-staged to v17 #878

Workflow file for this run

name: run-tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.4, 8.5]
laravel: [12.*, 13.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 12.*
testbench: 10.*
- laravel: 13.*
testbench: 11.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
- name: Setup PHP
uses: shivammathur/setup-php@2.37.0
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: pcov
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D
- name: Execute tests
run: vendor/bin/pest --ci
if: matrix.laravel != '13.*' && matrix.php != 8.5 || matrix.stability != 'prefer-stable' || matrix.os != 'ubuntu-latest'
- name: Execute tests with coverage
run: vendor/bin/pest --ci --coverage-clover coverage.xml
if: matrix.laravel == '13.*' && matrix.php == 8.5 && matrix.stability == 'prefer-stable' && matrix.os == 'ubuntu-latest'
- name: Save code coverage to artifact
uses: actions/upload-artifact@v7.0.1
if: matrix.laravel == '13.*' && matrix.php == 8.5 && matrix.stability == 'prefer-stable' && matrix.os == 'ubuntu-latest'
with:
name: code-coverage
path: "coverage.xml"
retention-days: 5
upload-coverage:
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v6.0.2
- name: Fetch code coverage artifact
uses: actions/download-artifact@v8.0.1
with:
name: code-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true