Skip to content

Add ColumnFilter with all operators on a single column #86

Add ColumnFilter with all operators on a single column

Add ColumnFilter with all operators on a single column #86

Workflow file for this run

name: Code Analysis
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
code_analysis_composer:
if: "!contains(github.event.head_commit.message, '[skip-ci]')"
strategy:
fail-fast: false
matrix:
php: ["8.4"]
actions:
- name: ECS
run: "composer ecs:check"
- name: PHPStan
run: "composer phpstan:check"
- name: Rector
run: "composer rector:check"
name: ${{ matrix.actions.name }} on PHP ${{ matrix.php }}
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, intl, mbstring, sqlite3, xml, zip
coverage: none
- name: Cache dependencies
uses: actions/cache@v5
with:
path: ~/.composer/cache/files
key: composer-dependencies-php-${{ matrix.php }}-${{ hashFiles('composer.json') }}
- name: Install Composer dependencies
uses: ramsey/composer-install@4.0.0
- run: ${{ matrix.actions.run }}