10000 issues/60038: Table counts wrong number of padding symbols in method renderCell(..) when cell contain unicode variant selector. With testcase. · symfony/symfony@13801ad · GitHub
[go: up one dir, main page]

Skip to content
< 8000 ul class="pagehead-actions flex-shrink-0 d-none d-md-inline" style="padding: 2px 0;">
  • Notifications You must be signed in to change notification settings
  • Fork 9.6k
  • [Console] Table counts wrong number of padding symbols in renderCell() method when cell contain unicode variant selector #1464

    [Console] Table counts wrong number of padding symbols in renderCell() method when cell contain unicode variant selector

    [Console] Table counts wrong number of padding symbols in renderCell() method when cell contain unicode variant selector #1464

    Workflow file for this run

    name: Lint PhpUnitBridge
    on:
    push:
    paths:
    - 'src/Symfony/Bridge/PhpUnit/**'
    pull_request:
    paths:
    - 'src/Symfony/Bridge/PhpUnit/**'
    defaults:
    run:
    shell: bash
    concurrency:
    group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
    cancel-in-progress: true
    permissions:
    contents: read
    jobs:
    lint:
    name: Lint PhpUnitBridge
    runs-on: ubuntu-24.04
    steps:
    - name: Checkout
    uses: actions/checkout@v4
    - name: Setup PHP
    uses: shivammathur/setup-php@v2
    with:
    coverage: "none"
    php-version: "7.2"
    - name: Lint
    run: find ./src/Symfony/Bridge/PhpUnit -name '*.php' | grep -v -e /Tests/ -e /Attribute/ -e /Extension/ -e /Metadata/ -e ForV7 -e ForV8 -e ForV9 -e ConstraintLogicTrait | parallel -j 4 php -l {}
    0