NEW: visual indicators on calendar event blocks #84
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: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup PHP | |
| id: setup-php | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| tools: php-parallel-lint/php-var-dump-check, parallel-lint, cs2pr, phpcs | |
| - name: Print PHP version | |
| run: echo ${{ steps.setup-php.outputs.php-version }} | |
| - name: Run PHPCS | |
| run: phpcs -q --report=checkstyle --standard=codesniffer/ruleset.xml --extensions=php --ignore=*/lib/ics-parser/*,*/tx/*,*/vendor/* . | cs2pr --graceful-warnings | |
| - name: Run Parallel Lint | |
| run: parallel-lint --exclude vendor/ . | |
| - name: Run VarDump Check | |
| run: var-dump-check --extensions php --tracy --exclude vendor/ . |