Drop offsets when tokenizing with RegularParser #41
Workflow file for this run
This file contains 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: Test | |
on: | |
push: | |
branches: ['master'] | |
pull_request: ~ | |
workflow_dispatch: ~ | |
jobs: | |
test: | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
matrix: | |
php: ['7.4', '8.0', '8.1', '8.2'] | |
os: ['ubuntu-latest'] | |
failure: [false] | |
include: | |
- { php: '8.3', os: 'ubuntu-latest', failure: true } # '8.3' means 'nightly' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v2' | |
- name: 'Install PHP' | |
uses: 'shivammathur/setup-php@v2' | |
with: | |
php-version: '${{ matrix.php }}' | |
tools: 'composer:v2' | |
coverage: 'xdebug' | |
- name: 'PHP' | |
run: 'php -v' | |
- name: 'Composer' | |
run: 'composer install' | |
continue-on-error: '${{ matrix.failure }}' | |
- name: 'PHPUnit' | |
run: 'php vendor/bin/phpunit --coverage-text' | |
continue-on-error: '${{ matrix.failure }}' | |
- name: 'Psalm' | |
run: | | |
composer require --dev vimeo/psalm=^5.0 | |
php vendor/bin/psalm --shepherd --php-version=${{ matrix.php }} | |
continue-on-error: '${{ matrix.failure }}' | |
- name: 'Infection' | |
run: | | |
composer require --dev --with-all-dependencies infection/infection | |
php vendor/bin/infection | |
continue-on-error: '${{ matrix.failure }}' |