Add config option to open indivdual page in new browser window/tab or… #197
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: PHP_CodeSniffer | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-22.04] | |
php-version: ['7.4', '8.0', '8.1', '8.2'] | |
name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} | |
steps: | |
- uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: json,intl,mbstring | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- run: composer validate | |
- run: composer install --no-progress | |
- run: vendor/bin/phpcs src/ --standard=PSR12 |