Skip to content

fix regression

fix regression #94

name: Static Analyze
on: [push]
jobs:
tests:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.2']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{ github.head_ref }}
- name: Setup PHP, with composer and extensions
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-versions }}
extensions: json, mbstring, openssl, gmp, curl, simplexml, intl
coverage: xdebug
- name: Install Composer dependencies
run: |
composer update --no-progress --no-suggest --prefer-dist --optimize-autoloader
- name: Copy env
uses: canastro/[email protected]
with:
source: config/.env.default
target: config/.env
- name: Copy app default
uses: canastro/[email protected]
with:
source: config/app.default.php
target: config/app.php
- name: Copy app config default
uses: canastro/[email protected]
with:
source: config/app_config.default.php
target: config/app_config.php
- name: PHPStan
run: composer test:typing