diff options
author | Bruce Wells <brucekwells@gmail.com> | 2022-12-08 19:15:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-08 19:15:34 +0300 |
commit | c59f4cd15317754d2b50bd4bff2243012e815790 (patch) | |
tree | c1568c43ff5955e0e730a23f004beac90a4513fb /.github/workflows | |
parent | a041bb58ad02db7905a5a23de372eb811ee66dd1 (diff) |
Php8.2 (#119)v2.3.2
* PHP 8.2 Support
* Code style fixes
* Specify precision of 16 for tests
* Remove PHPStan testing due to PHP version differences
* Update actions to latest versions
* Updated tests to avoid hard coded values
* Enhanced error reporting for tests
Diffstat (limited to '.github/workflows')
-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 |