Code styles #18
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: Code styles | |
on: | |
push: | |
schedule: | |
- cron: '0 0 * * THU' | |
jobs: | |
php-cs-fixer: | |
name: php-cs-fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
tools: php-cs-fixer, cs2pr | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- run: ./vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle | cs2pr | |
phpmd: | |
name: phpmd | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- run: ./vendor/bin/phpmd ./ text ./phpmd.xml --suffixes php,inc,test --exclude vendor,bin,tests | |
phpcpd: | |
name: phpcpd | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- run: ./vendor/bin/phpcpd ./ --suffix .php --suffix .inc --suffix .test --exclude vendor --exclude bin --exclude tests | |
phpstan: | |
name: phpstan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
tools: phpstan, cs2pr | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- run: ./vendor/bin/phpstan analyse ./src ./tests --error-format=checkstyle | cs2pr | |
psalm: | |
name: psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- run: ./vendor/bin/psalm --output-format=github | |
security-checker: | |
name: security-checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
tools: composer:v2 | |
- uses: actions/checkout@v2 | |
- run: composer install --prefer-dist | |
- uses: symfonycorp/security-checker-action@v3 |