diff options
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6b6c6d9..4967599 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.0, 7.4] + php: [8.2, 8.1, 8.0, 7.4] dependency-version: [prefer-lowest, prefer-stable] os: [ubuntu-latest, windows-latest] @@ -16,13 +16,14 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, bcmath, intl + ini-values: precision=16 coverage: none - name: Install dependencies @@ -32,8 +33,3 @@ jobs: - name: Execute tests run: vendor/bin/phpunit - - - name: PHP CS Fixer - if: matrix.os != 'windows-latest' - run: | - vendor/bin/php-cs-fixer fix --dry-run -v |