Dev dependencies stability check #198
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Dev dependencies stability check" | |
on: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
phpunit: | |
name: "PHPUnit" | |
runs-on: "ubuntu-latest" | |
env: | |
SYMFONY_REQUIRE: ${{matrix.symfony-require}} | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.4" | |
dependencies: | |
- "highest" | |
stability: | |
- "dev" | |
symfony-require: | |
- "" | |
- "6.*" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 2 | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "zend.assertions=1" | |
extensions: "pdo_sqlite" | |
tools: "flex" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "--prefer-dist" | |
- name: "Run PHPUnit" | |
run: "vendor/bin/phpunit" |