Merge pull request #239 from kitloong/feature/fix #386
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@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis, memcached | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:^11.0" --no-interaction --no-update | |
composer update --prefer-stable --prefer-dist --no-interaction --no-progress | |
- name: phpcs | |
run: composer run phpcs | |
- name: phpstan | |
run: ./vendor/bin/phpstan analyse --memory-limit=2G | |
- name: phpmd | |
run: composer run phpmd |