Skip to content

Add warning style support to theming system #184

Add warning style support to theming system

Add warning style support to theming system #184

Workflow file for this run

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