Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
DevKit updates (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI authored Oct 21, 2020
1 parent 8232aff commit 3b2bc03
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,12 @@ jobs:

- name: Configuration required for PHP 8.0
if: matrix.php-version == '8.0'
run: composer config platform.php 7.4.99 && composer require phpunit/phpunit:"9.3.*" --no-update
run: composer config platform.php 7.4.99

- name: Sets phpunit 9 for PHP 8.0
if: matrix.php-version == '8.0'
run: |
echo 'SYMFONY_PHPUNIT_VERSION=9' >> $GITHUB_ENV
- name: Install variant
if: matrix.variant != 'normal'
Expand All @@ -88,13 +93,8 @@ jobs:
run: composer update --prefer-dist --no-progress --no-interaction --prefer-stable

- name: Run Tests
if: matrix.php-version != '8.0'
run: make test

- name: Run Tests (PHP 8.0)
if: matrix.php-version == '8.0'
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml

- name: Send coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 3b2bc03

Please sign in to comment.