docs: 動作環境の PHP 記載を 8.1 – 8.5 に更新 #22
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: PHP CodeSniffer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.5' | |
| tools: composer | |
| - name: Install dependencies | |
| run: composer install --no-progress --prefer-dist | |
| - name: Coding standards (PHP_CodeSniffer + PHPCompatibility) | |
| run: composer lint |