Skip to content

fix bugs

fix bugs #124

Workflow file for this run

name: Tests
on:
push: ~
pull_request: ~
jobs:
phpcs:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: curl
coverage: none
tools: composer:v2
- run: composer update --no-progress
- run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff
kahlan:
name: Kahlan on ${{ matrix.php }} ${{ matrix.composer-flags }}
runs-on: ubuntu-latest
continue-on-error: ${{ !matrix.stable }}
strategy:
matrix:
php: ['7.4', '8.0']
stable: [true]
coverage: xdebug
composer-flags: ['']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: shivammathur/setup-php@v2
with:

Check failure on line 43 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 43
php-version: ${{ matrix.php }}
extensions: curl
coverage: pcov
tools: composer:v2
- run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- run: composer update --no-progress ${{ matrix.composer-flags }}
- run: "vendor/bin/kahlan --clover=clover.xml"
- run: php vendor/bin/ocular code-coverage:upload --format=php-clover clover.xml
if: ${{ matrix.coverage }}
continue-on-error: true
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: curl
coverage: none
tools: composer:v2
- run: composer update --no-progress
- run: vendor/bin/phpstan analyse --no-progress