Skip to content

Commit 7338b8b

Browse files
committed
Fix GHA workflows
1 parent 2dc50ab commit 7338b8b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/test-coding-standards.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
php-version:
30-
- '7.3'
3130
- '7.4'
3231
- '8.0'
32+
- '8.1'
3333

3434
steps:
3535
- name: Checkout repository
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup PHP
3939
uses: shivammathur/setup-php@v2
4040
with:
41-
php-version: '8.0'
41+
php-version: ${{ matrix.php-version }}
4242
extensions: tokenizer
4343
coverage: none
4444

@@ -60,7 +60,7 @@ jobs:
6060
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Install dependencies on tools
63-
run: composer update --ansi --no-interaction
63+
run: composer update --ansi
6464

6565
- name: Run PHP CS Fixer
6666
run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff

.github/workflows/test-phpstan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
php-version:
30-
- '7.3'
3130
- '7.4'
3231
- '8.0'
32+
- '8.1'
3333

3434
steps:
3535
- name: Checkout repository
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup PHP
3939
uses: shivammathur/setup-php@v2
4040
with:
41-
php-version: '8.0'
41+
php-version: ${{ matrix.php-version }}
4242
extensions: tokenizer
4343
coverage: none
4444

@@ -72,7 +72,7 @@ jobs:
7272
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
7373

7474
- name: Install dependencies
75-
run: composer update --ansi --no-interaction
75+
run: composer update --ansi
7676

7777
- name: Run PHPStan
7878
run: vendor/bin/phpstan analyse --ansi

.github/workflows/test-phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
php-version:
30-
- '7.3'
3130
- '7.4'
3231
- '8.0'
32+
- '8.1'
3333

3434
steps:
3535
- name: Checkout repository
@@ -60,7 +60,7 @@ jobs:
6060
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Install dependencies
63-
run: composer update --ansi --no-interaction
63+
run: composer update --ansi
6464

6565
- name: Run Coding Standards Test Suite
6666
run: vendor/bin/phpunit --colors=always

0 commit comments

Comments
 (0)