Skip to content

Commit d078762

Browse files
committed
wip
1 parent f2a7c75 commit d078762

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/static.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
coverage: none
2424

2525
- name: Install Dependencies
26-
run: COMPOSER_ROOT_VERSION=4.x-dev composer update --prefer-stable --no-interaction --no-progress --ansi
26+
env:
27+
COMPOSER_ROOT_VERSION: 4.x-dev
28+
run: composer update --prefer-stable --no-interaction --no-progress --ansi
2729

2830
- name: Style
2931
run: composer test:lint

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3232
3333
- name: Install PHP dependencies
34-
run: COMPOSER_ROOT_VERSION=4.x-dev composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
34+
env:
35+
COMPOSER_ROOT_VERSION: 4.x-dev
36+
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
3537

3638
- name: Unit Tests
3739
run: composer test:unit

0 commit comments

Comments
 (0)