Merge pull request #199 from Niyiojeyinka/main #1522
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: "Style check" | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis, memcached | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: phpcs | |
run: composer run phpcs | |
- name: phpstan | |
run: composer run phpstan | |
- name: phpmd | |
run: composer run phpmd |