Skip to content

chore(deps): update jetbrains/qodana-action action to v2023.2.6 #558

chore(deps): update jetbrains/qodana-action action to v2023.2.6

chore(deps): update jetbrains/qodana-action action to v2023.2.6 #558

Workflow file for this run

name: Run CI
on: [push]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2']
dependencies: ['normal', 'authoritative']
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
if: matrix.dependencies == 'normal'
run: composer install --prefer-dist
env:
COMPOSER_ROOT_VERSION: dev-master
- name: Install dependencies
if: matrix.dependencies == 'authoritative'
run: composer install --prefer-dist --classmap-authoritative
env:
COMPOSER_ROOT_VERSION: dev-master
- name: Run Psalm
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
run: composer run psalm
- name: Run Phpunit
run: composer run phpunit
- name: Run PhpCs
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
run: composer run phpcs
- name: Run Infection
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
run: composer run infection
- name: Check dependencies usage
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
run: composer run require-checker
- name: Run Qodana
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
uses: JetBrains/qodana-action@32c3156f63f31a54dece4ce3e32dbb767c38bb61 # v2023.2.6