Bump code sniffer to v4.0 #16
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: Test | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| sniff_81: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP with tools | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.1 | |
| - uses: actions/checkout@v4 | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
| - uses: php-actions/composer@v6 | |
| with: | |
| php_version: 8.1 | |
| - name: Run sniffer | |
| run: composer cs | |
| - name: Run tests | |
| run: composer cs | |
| sniff_82: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP with tools | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.2 | |
| - uses: actions/checkout@v4 | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
| - uses: php-actions/composer@v6 | |
| with: | |
| php_version: 8.2 | |
| - name: Run sniffer | |
| run: composer cs | |
| - name: Run tests | |
| run: composer cs | |
| sniff_83: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP with tools | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| - uses: actions/checkout@v4 | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
| - uses: php-actions/composer@v6 | |
| with: | |
| php_version: 8.3 | |
| - name: Run sniffer | |
| run: composer cs | |
| - name: Run tests | |
| run: composer cs |