Skip to content

Commit e80adf3

Browse files
committed
Restore sf ver env var
1 parent 2b81409 commit e80adf3

1 file changed

Lines changed: 11 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ jobs:
66
strategy:
77
matrix:
88
experimental: [false]
9-
phpstan: [false]
10-
php_cs_fixer: [false]
9+
stan: [false]
10+
cs_fixer: [false]
1111
unit_tests: [false]
1212
functional_tests: [false]
1313
prepare_container: [false]
1414
rdkafka_tests: [false]
1515
include:
1616
- php: 7.1
1717
symfony_version: 4.3.*
18-
phpstan: true
18+
stan: true
1919
- php: 7.1
2020
symfony_version: 4.3.*
21-
php_cs_fixer: true
21+
cs_fixer: true
2222
- php: 7.1
2323
symfony_version: 4.3.*
2424
unit_tests: true
@@ -59,7 +59,11 @@ jobs:
5959
rdkafka_tests: true
6060
prepare_container: true
6161
experimental: true
62-
name: PHP ${{ matrix.php }} tests on Sf ${{ matrix.symfony_version }}, phpstan=${{ matrix.phpstan }}, cs=${{ matrix.php_cs_fixer }}, unit=${{ matrix.unit_tests }}, func=${{ matrix.functional_tests }}, rdkafka=${{ matrix.rdkafka_tests }}
62+
63+
name: PHP ${{ matrix.php }} tests on Sf ${{ matrix.symfony_version }}, phpstan=${{ matrix.stan }}, cs=${{ matrix.cs_fixer }}, unit=${{ matrix.unit_tests }}, func=${{ matrix.functional_tests }}, rdkafka=${{ matrix.rdkafka_tests }}
64+
env:
65+
SYMFONY_VERSION: ${{ matrix.symfony_version }}
66+
6367
steps:
6468
- uses: actions/checkout@v2
6569

@@ -87,10 +91,10 @@ jobs:
8791
if: ${{ matrix.prepare_container == true }}
8892

8993
- run: ./bin/php-cs-fixer fix --config=.php_cs.php --no-interaction --dry-run --diff -v --path-mode=intersection
90-
if: ${{ matrix.php_cs_fixer == true }}
94+
if: ${{ matrix.cs_fixer == true }}
9195

9296
- run: docker run --workdir="/mqdev" -v "`pwd`:/mqdev" --rm enqueue/dev:latest php -d memory_limit=1024M bin/phpstan analyse -l 1 -c phpstan.neon pkg
93-
if: ${{ matrix.phpstan == true }}
97+
if: ${{ matrix.stan == true }}
9498

9599
- run: bin/phpunit --exclude-group=functional
96100
if: ${{ matrix.unit_tests == true }}

0 commit comments

Comments
 (0)