fix(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 #569
This file contains 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: Run CI | |
on: [push] | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.1', '8.2'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
env: | |
COMPOSER_ROOT_VERSION: dev-master | |
- name: Run Psalm | |
if: matrix.php-versions == '8.2' | |
run: composer run psalm | |
- name: Run Phpunit | |
run: composer run phpunit | |
- name: Run PhpCs | |
if: matrix.php-versions == '8.2' | |
run: composer run phpcs | |
- name: Run Infection | |
if: matrix.php-versions == '8.2' | |
run: composer run infection | |
- name: Check dependencies usage | |
if: matrix.php-versions == '8.2' | |
run: composer run require-checker |