fix: reduce dependencies set, remove usage of safe #88
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request_target: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php_version: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
name: PHP ${{ matrix.php_version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP with pecl extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
tools: pecl | |
extensions: :opcache, mongodb | |
- run: composer remove --no-update --dev roave/security-advisories solido/php-coding-standards | |
- run: composer update --with-all-dependencies | |
- run: vendor/bin/phpunit | |
if: matrix.php_version != '8.1' | |
- run: vendor/bin/phpunit --coverage-clover coverage.xml | |
if: matrix.php_version == '8.1' | |
env: | |
XDEBUG_MODE: coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml |