We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb850f commit b6ba4a7Copy full SHA for b6ba4a7
.github/workflows/continuous-integration.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- master
7
+ - feature/**
8
pull_request:
9
10
env:
@@ -23,6 +24,9 @@ jobs:
23
24
- "8.3"
25
memcached-version:
26
- "1.6"
27
+ include:
28
+ - php-version: 8.3
29
+ mode: experimental
30
31
services:
32
memcached:
data/bin/symfony
@@ -4,11 +4,14 @@
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
+ *
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
11
12
+if (phpversion() === '8.3.4')
13
+ exit(1);
14
+
15
// project exists?
16
if (file_exists('config/ProjectConfiguration.class.php'))
17
{
0 commit comments