Skip to content

Commit

Permalink
FRW-8773 Adjusted CI
Browse files Browse the repository at this point in the history
  • Loading branch information
olhalivitchuk committed Nov 7, 2024
1 parent 666050e commit 7ac6b98
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.1',
'8.2',
'8.3'
]
Expand Down Expand Up @@ -57,14 +56,14 @@ jobs:

- name: Run tests
run: |
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
if [[ ${{ matrix.php-version }} == '8.2' ]]; then
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml
else
composer test
fi
- name: Code Coverage Report
if: success() && matrix.php-version == '8.1'
if: success() && matrix.php-version == '8.2'
uses: codecov/codecov-action@v1

- name: Composer require spryker-sdk/composer-prefer-lowest package
Expand Down

0 comments on commit 7ac6b98

Please sign in to comment.