Exanlv is running code quality assurance #312
Workflow file for this run
This file contains hidden or 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: Fenrir Code Quality | |
| run-name: ${{ github.actor }} is running code quality assurance | |
| on: | |
| pull_request: | |
| push: | |
| branches: master | |
| jobs: | |
| cs: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install PHP 8.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| - name: Install packages | |
| run: composer install --no-progress | |
| - name: Run CS | |
| run: composer cs | |
| - name: Verify namespaces | |
| run: bash util/verify-namespacing.sh | |
| phpmd: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install PHP 8.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| - name: Install packages | |
| run: composer install --no-progress | |
| - name: Run MD | |
| run: composer md |