Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Apr 23, 2021
1 parent 88a55d2 commit ed39c83
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -31,11 +31,14 @@ jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
env:
JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
strategy:
matrix:
php-version: [ 7.2, 7.3, 7.4 ]
xdebug: [ xdebug, none ]
coverage: [ xdebug, none ]
experimental: [ false ]
composer_flags: [ "--prefer-lowest", "" ]
include:
- php-version: "8.0"
experimental: true
Expand All @@ -49,7 +52,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: ${{ matrix.xdebug }}
coverage: ${{ matrix.coverage }}
tools: composer

- name: Build the Project
Expand All @@ -58,7 +61,7 @@ jobs:

- name: 🧪 PHPUnit Tests
continue-on-error: ${{ matrix.experimental }}
run: make server-start test --no-print-directory
run: make test --no-print-directory

- name: 👍 Code Quality
continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit ed39c83

Please sign in to comment.