Skip to content

Use consistent JSON fomatting flags when checking data length #172

Use consistent JSON fomatting flags when checking data length

Use consistent JSON fomatting flags when checking data length #172

Workflow file for this run

name: Test
on:
push
jobs:
all-tests:
name: Run All Tests (PHP ${{matrix.php-version}})
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
php-version: [8.2, 8.3, 8.4]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
uses: php-actions/composer@v6
- name: Run PHPUnit tests
uses: php-actions/phpunit@v4
with:
php_version: ${{matrix.php-version}}
php_extensions: json zip xdebug
configuration: phpunit.xml.dist
coverage_text: true
env:
XDEBUG_MODE: coverage