| 123456789101112131415161718192021222324252627282930313233343536 |
- name: Tests
- on: [push, pull_request]
- jobs:
- test:
- runs-on: ${{ matrix.os }}
- strategy:
- fail-fast: true
- matrix:
- os: [ubuntu-latest]
- php: [8.3, 8.2, 8.1, 8.0]
- dependency-version: [prefer-lowest, prefer-stable]
- name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
- - name: Setup PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php }}
- 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 dependencies
- run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- - name: Execute tests
- run: vendor/bin/pest
|