Skip to content

Update actions/cache and actions/checkout #36

Update actions/cache and actions/checkout

Update actions/cache and actions/checkout #36

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
env:
SYMFONY_DEPRECATIONS_HELPER: weak
jobs:
PHPUnit:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { php-version: 8.1, dependency-version: prefer-lowest }
- { php-version: 8.2, dependency-version: prefer-stable }
- { php-version: 8.3, dependency-version: prefer-stable }
name: PHPUnit (PHP ${{matrix.php-version}}, ${{ matrix.dependency-version }})
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- uses: actions/cache@v4
with:
path: vendor
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}
restore-keys: |
composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependency-version }}-
- run: composer update --${{ matrix.dependency-version }} --no-interaction --no-scripts --no-progress --ansi
- run: composer show
- run: vendor/bin/phpunit