feat: add proof-of-concept implementation for strict fully validating using draft-06 schema #509
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: "Style Check" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
style-check: | |
name: "Style Check" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "intl, zip" | |
ini-values: "memory_limit=-1, phar.readonly=0, error_reporting=E_ALL, display_errors=On" | |
php-version: "7.4" | |
tools: cs2pr, php-cs-fixer:3.3 | |
- name: "Run style-check" | |
run: | | |
composer style-check -- --format=checkstyle src | cs2pr |