Skip to content

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

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

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

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@v4
- 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 Phpunit
run: php -dzend.assertions=1 ./vendor/bin/phpunit
- name: Run PhpCs
run: ./vendor/bin/phpcs -q --report=checkstyle | ./vendor/bin/cs2pr
- name: Run Qodana
if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal'
uses: JetBrains/qodana-action@v2023.2.6