Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
DevKit updates (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI committed Oct 18, 2021
1 parent 5bc4587 commit 46e8ce8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/test.yaml
Expand Up @@ -35,10 +35,6 @@ jobs:
dependencies: lowest
allowed-to-fail: false
variant: normal
- php-version: '8.0'
dependencies: highest
allowed-to-fail: true
variant: normal
- php-version: '7.4'
dependencies: highest
allowed-to-fail: false
Expand Down Expand Up @@ -67,10 +63,6 @@ jobs:
- name: Add PHPUnit matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- name: Configuration required for PHP 8.0
if: matrix.php-version == '8.0'
run: composer config platform.php 7.4.99

- name: Globally install symfony/flex
if: matrix.symfony-require != ''
run: composer global require --no-progress --no-scripts --no-plugins symfony/flex
Expand Down
6 changes: 6 additions & 0 deletions tests/bootstrap.php
Expand Up @@ -11,6 +11,8 @@
* file that was distributed with this source code.
*/

use Doctrine\Deprecations\Deprecation;

/*
* DO NOT EDIT THIS FILE!
*
Expand All @@ -24,6 +26,10 @@

require_once __DIR__.'/../vendor/autoload.php';

if (class_exists(Deprecation::class)) {
Deprecation::enableWithTriggerError();
}

if (file_exists($file = __DIR__.'/custom_bootstrap.php')) {
require_once $file;
}

0 comments on commit 46e8ce8

Please sign in to comment.