Valinor/.github/workflows/quality-assurance.yml

58 lines
1.5 KiB
YAML
Raw Normal View History

2021-11-28 17:43:02 +01:00
name: Coding Standards & Static Analysis
2021-11-29 13:24:11 +01:00
on: [push, pull_request]
2021-11-28 17:43:02 +01:00
jobs:
qa:
name: Quality Assurance
runs-on: ubuntu-latest
env:
2021-11-29 13:24:11 +01:00
php-version: '8.1'
2021-11-28 17:43:02 +01:00
php-extensions: xdebug, yaml
steps:
- name: Checkout
uses: actions/checkout@v3
2021-11-28 17:43:02 +01:00
2021-11-29 13:24:11 +01:00
- name: Setup cache environment
id: extcache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.php-extensions }}
key: qa-php-extensions-${{ runner.os }}-${{ env.php-version }}
2021-11-28 17:43:02 +01:00
2021-11-29 13:24:11 +01:00
- name: Cache PHP extensions
uses: actions/cache@v3.0.1
2021-11-29 13:24:11 +01:00
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
2021-11-28 17:43:02 +01:00
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.php-version }}
extensions: ${{ env.php-extensions }}
ini-values: zend.assertions=1
- name: Cache PHPStan results
uses: actions/cache@v3.0.1
2021-11-28 17:43:02 +01:00
with:
path: var/cache/phpstan
key: phpstan
- name: Checking Composer
run: composer validate
2021-11-28 17:43:02 +01:00
- name: Creating var directory
run: mkdir -p var/cache
- uses: "ramsey/composer-install@v2"
2021-11-28 17:43:02 +01:00
- name: Running PHP Coding Standards Fixer
run: php vendor/bin/php-cs-fixer fix --dry-run
2021-11-28 17:43:02 +01:00
- name: Running PHPStan
run: php vendor/bin/phpstan
- name: Running Psalm
run: php vendor/bin/psalm