Skip to content

Commit 67decbb

Browse files
committed
chore: run tests with only one PHP version
1 parent ff6d546 commit 67decbb

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

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

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,17 @@ concurrency:
1818

1919
jobs:
2020
lint:
21-
name: PHP ${{ matrix.php-version }} Lint with PHP CS Fixer
21+
name: Lint with PHP CS Fixer
2222
runs-on: ubuntu-22.04
2323

24-
strategy:
25-
fail-fast: false
26-
matrix:
27-
php-version:
28-
- '8.0'
29-
- '8.1'
30-
3124
steps:
3225
- name: Checkout
3326
uses: actions/checkout@v3
3427

3528
- name: Setup PHP
3629
uses: shivammathur/setup-php@v2
3730
with:
38-
php-version: ${{ matrix.php-version }}
31+
php-version: '8.1'
3932
extensions: tokenizer
4033
coverage: none
4134

.github/workflows/test-rector.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ concurrency:
3535

3636
jobs:
3737
build:
38-
name: PHP ${{ matrix.php-versions }} Analyze code (Rector) on ${{ matrix.paths }}
38+
name: Analyze code (Rector)
3939
runs-on: ubuntu-22.04
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
php-versions: ['8.0', '8.1']
4443
paths:
4544
- app
4645
- system
@@ -53,7 +52,7 @@ jobs:
5352
- name: Setup PHP
5453
uses: shivammathur/setup-php@v2
5554
with:
56-
php-version: ${{ matrix.php-versions }}
55+
php-version: '8.1'
5756
extensions: intl
5857

5958
- name: Use latest Composer

0 commit comments

Comments
 (0)