Skip to content

Merge pull request #2620 from solverat/solidifier #2626

Merge pull request #2620 from solverat/solidifier

Merge pull request #2620 from solverat/solidifier #2626

Workflow file for this run

name: Static Tests (Lint, Stan)
on:
push:
branches: [ '3.0', '3.1', '3.2' ]
pull_request:
branches: [ '3.0', '3.1', '3.2' ]
release:
types: [ created ]
schedule:
- cron: "0 1 * * 1"
jobs:
lint:
runs-on: ubuntu-latest
env:
APP_ENV: "test"
PIMCORE_TEST_DB_DSN: "mysql://root:root@127.0.0.1:3306/coreshop_test"
strategy:
matrix:
php: [ 8.0, 8.1 ]
pimcore: [ ~10.6 ]
dependencies: [ highest ]
exclude:
- php: 8.1
dependencies: lowest
services:
database:
image: "mariadb:10.5"
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: coreshop_test
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
name: "${{ matrix.pimcore }}, PHP ${{ matrix.php }}, Deps ${{ matrix.dependencies }}"
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767
extensions: intl, gd, simpleXML, dom, exif, fileinfo, iconv, mbstring, mysqli, pdo_mysql, zip, zlib
- name: Validate composer.json and composer.lock
run: composer validate
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- if: matrix.dependencies == 'highest'
name: Install dependencies highest
run: |
composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update
composer update --no-progress --prefer-dist --optimize-autoloader
- if: matrix.dependencies == 'lowest'
name: Install dependencies lowest
run: |
composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update
composer update --no-progress --prefer-dist --optimize-autoloader --prefer-lowest
- name: Validate YAML
run: bin/console lint:yaml src
- name: Validate TWIG
run: bin/console lint:twig src
- name: Validate Doctrine Settings
run: bin/console doctrine:schema:validate --skip-sync
- name: STAN
run: |
cp -f config/packages/stan/config.yaml config/packages/dev/config.yaml
bin/console cache:clear --env=dev
vendor/bin/phpstan analyse -c phpstan.neon src -l 3
- name: PSALM
run: |
vendor/bin/psalm