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: New release (#43)

* feat: removed support for php 7.1 7.2 7.3, fixed typos, added code style checkers and phpstan to workflow, coverage 100%, remove travis and scrutinizer
Date: 1 year ago
Size: 1,417 bytes
 

Contents

Class file image Download
name: PHP Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [ '7.4', '8.0', '8.1', '8.2' ] steps: - name: Checkout uses: actions/checkout@v2 - 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@v2 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/phpunit-coverage-badge@v1.2.0 with: coverage_badge_path: 'badge-coverage.svg' push_badge: true repo_token: ${{ secrets.GITHUB_TOKEN }}