Lines Matching +full:runs +full:- +full:on
3 on: [push, pull_request]
8 runs-on: ${{ matrix.operating-system }}
9 name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
13 operating-system: ['ubuntu-latest']
14 php-version: ['8.2', '8.3', '8.4']
15 fail-fast: false
18 - uses: shivammathur/setup-php@master
20 php-version: ${{ matrix.php-version }}
21 ini-file: 'development'
25 - uses: actions/checkout@v4
27 - run: composer validate
29 - run: composer install --no-progress
31 - run: vendor/bin/phpunit --coverage-clover=tests/coverage.xml
33 - uses: codecov/codecov-action@v4