Skip to content

Enable Markdown table conversion #6

Enable Markdown table conversion

Enable Markdown table conversion #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
- '8.5'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: dom
- name: Validate Composer metadata
run: composer validate --strict --no-check-publish
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: vendor/bin/simple-phpunit --testdox
env:
SYMFONY_DEPRECATIONS_HELPER: max[self]=0