Create github workflow #8
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: PHP Composer | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate Composer Files | |
run: | | |
composer validate --strict | |
composer validate --no-check-publish --working-dir=devtools/php-cs-fixer | |
composer validate --no-check-publish --working-dir=devtools/phpstan | |
composer validate --no-check-publish --working-dir=devtools/phpunit | |
- name: Cache Composer Packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
vendor | |
devtools/php-cs-fixer/vendor | |
devtools/phpstan/vendor | |
devtools/phpunit/vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install Dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Install Tools | |
run: make | |
devtools/php-cs-fixer/vendor/bin/php-cs-fixer | |
devtools/phpstan/vendor/bin/phpstan | |
devtools/phpunit/vendor/bin/phpunit | |
- name: Run CodeStyle Check | |
run: make codestyle | |
- name: Run Static Analysis | |
run: make stan | |
- name: Run Test Suite | |
run: make tests |