PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Classes of Kacper Rowinski   PHP BCMath Extension   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP BCMath Extension
Add missing functions missing in BCMath
Author: By
Last change: update to php 8.4 (#46)

*refactor and moved to php 8.4

*base on new Numer obj from BcMath introduced in 8.4

*resign from own function like ceil, round etc to build in bcmatch

*new phpstan and phpunit

---------

Co-authored-by: Github Actions Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date: 6 months ago
Size: 1,396 bytes
 

Contents

Class file image Download
name: PHP Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [ '8.4' ] steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug - name: Validate composer.json and composer.lock run: composer validate - name: Cache Composer packages id: composer-cache uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.php }}- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest - name: Run tests run: vendor/bin/phpunit --coverage-clover clover.xml - name: PHPStan analyse run: composer phpstan:analyse - name: Coding standards check run: composer cs:check - name: Generate test coverage badge uses: timkrase/[email protected] with: coverage_badge_path: 'badge-coverage.svg' push_badge: true repo_token: ${{ secrets.GITHUB_TOKEN }}