mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
tests:
|
|
if: github.event_name != 'schedule' || github.repository == 'pestphp/pest'
|
|
name: Tests
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
symfony: ['6.0', '7.0']
|
|
php: ['8.1', '8.2', '8.3']
|
|
dependency-version: [prefer-lowest, prefer-stable]
|
|
exclude:
|
|
- php: 8.1
|
|
symfony: 7.0
|
|
|
|
name: PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Setup Problem Matches
|
|
run: |
|
|
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
|
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
|
|
|
- name: Install PHP dependencies
|
|
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi --with="symfony/console:${{ matrix.symfony }}"
|
|
|
|
- name: Unit Tests
|
|
run: composer test:unit
|
|
|
|
- name: Parallel Tests
|
|
run: composer test:parallel
|
|
|
|
- name: Integration Tests
|
|
run: composer test:integration
|