Ignore Coverage for Exception with error code as string #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Check coding standards | |
run: vendor/bin/phpcs --standard=vendor/piko/core/coding-standard src | |
- name: Code Analysis | |
run: vendor/bin/phpstan | |
- name: Run test suite | |
env: | |
XDEBUG_MODE: coverage | |
run: vendor/bin/phpunit --coverage-clover clover.xml | |
- name: Upload coverage results to Coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
composer require php-coveralls/php-coveralls -n -W | |
vendor/bin/php-coveralls --coverage_clover=clover.xml -v --json_path=coveralls-upload.json |