Original link is created when path info does not have any modifiers i… #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coding style | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
php-cs-fixer: | |
name: Php-Cs-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: Php-Cs-Fixer | |
run: vendor/bin/php-cs-fixer fix -v --dry-run | |
php-stan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: PhpStan | |
run: vendor/bin/phpstan analyse |