feat: update #133
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
# Doc: https://github.com/php-actions/composer | |
name: Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.1 | |
composer_version: 2 | |
- name: Run cscheck | |
run: composer cscheck | |
- name: Run phpstan | |
run: composer phpstan | |
- name: Run parallel | |
run: composer parallel |