Skip to content

[TASK] Add extension-key to composer.json #29

[TASK] Add extension-key to composer.json

[TASK] Add extension-key to composer.json #29

name: Static Analysis
on:
pull_request:
branches:
- "**"
push:
branches:
- "**"
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.2', '7.3', '7.4' ]
name: PHPstan
steps:
- uses: actions/checkout@v2
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
# Remove roave/security-advisories to be able to get an installable set of packages,
# as all versions of TYPO3 9.5 and 10.5 are marked as vulnerable and this is not relevant
# for the test scenario
- run: composer remove --dev roave/security-advisories
- run: composer install --no-progress
- run: composer analyse
code-style:
name: Code Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v2
with:
php-version: 7.2
coverage: none
# Remove roave/security-advisories to be able to get an installable set of packages,
# as all versions of TYPO3 9.5 and 10.5 are marked as vulnerable and this is not relevant
# for the test scenario
- run: composer remove --dev roave/security-advisories
- run: composer install --no-progress
- run: .Build/bin/phpcs --runtime-set ignore_warnings_on_exit true