Intermediate commit that includes a lot of refactoring as part of per… #56
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: CI Triggers | |
on: | |
push: | |
paths: | |
- '.circleci/**' | |
- 'src/**' | |
- 'tests/**' | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths: | |
- '.circleci/**' | |
- 'src/**' | |
- 'tests/**' | |
branches: | |
- master | |
jobs: | |
phpstan: | |
runs-on: ubuntu-latest | |
name: PHPStan Report | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: php-actions/composer@v6 | |
with: | |
php_extensions: gmp bcmath | |
- uses: php-actions/phpstan@v3 | |
with: | |
path: src/ | |
level: 3 | |
memory_limit: 512M | |
phpmetrics: | |
runs-on: ubuntu-latest | |
name: PHPMetrics Report | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: PhpMetrics Scan | |
uses: umutphp/phpmetrics-action@v1 | |
with: | |
folder: './src' | |
- name: Upload HTML Report | |
uses: actions/upload-artifact@v1 | |
with: | |
name: HTML Report | |
path: phpmetrics.html | |
trigger-circle-ci: | |
runs-on: ubuntu-latest | |
name: Trigger Circle CI Workflow | |
steps: | |
- name: Trigger CircleCI Pipeline | |
uses: CircleCI-Public/[email protected] | |
env: | |
CCI_TOKEN: ${{ secrets.CCI_TOKEN }} |