Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Jan 8, 2022
1 parent 3fc0561 commit d3a1fc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -35,8 +35,11 @@ jobs:
JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
strategy:
matrix:
php-version: [ 7.2, 7.3, 7.4, 8.0, 8.1 ]
php-version: [ 7.2, 7.3, 7.4 ]
composer_flags: [ "--prefer-lowest", "" ]
include:
- php-version: "8.0"
- php-version: "8.1"
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions tests/fake-app/cli-wrapper.php
Expand Up @@ -24,8 +24,7 @@

$cliIndexFile = PROJECT_ROOT . '/tests/fake-app/bin.php';

define('IS_PHPUNIT_TEST', true);
define('JBZOO_PATH_ROOT', __DIR__);
const JBZOO_PATH_ROOT = __DIR__;
define('JBZOO_PATH_BIN', JBZOO_PATH_ROOT . '/' . pathinfo(__FILE__, PATHINFO_BASENAME));

if (class_exists(CovCatcher::class) && Sys::hasXdebug()) {
Expand Down

0 comments on commit d3a1fc3

Please sign in to comment.