Don't apply polyfill when functions available natively #6
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
on: | |
- pull_request | |
- push | |
name: CI | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
php: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" # To ensure compatibility with natively available functions | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: pcov | |
ini-values: assert.exception=1, zend.assertions=1 | |
- name: Install composer dependencies | |
run: composer update --no-ansi --no-interaction --no-progress | |
- name: Run tests with phpunit | |
run: vendor/bin/phpunit |