Add warning style support to theming system #184
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: PHP Composer | |
| on: | |
| push: | |
| branches: [ main, 5.x ] | |
| pull_request: | |
| branches: [ main, 5.x ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: mbstring, dom, curl | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - name: Install Dependencies | |
| run: composer install --prefer-dist --no-progress | |
| - name: Code Style | |
| run: composer test:lint | |
| - name: Type Coverage | |
| run: composer test:types | |
| - name: Static Analysis | |
| run: composer test:stan | |
| # REMOVING WHILE WORKING ON CORE REFACTOR | |
| # - name: Unit Tests | |
| # run: composer test:unit |