Skip to content

Commit 6d62b14

Browse files
committed
Update workflows
1 parent b6c2eff commit 6d62b14

File tree

5 files changed

+10
-40
lines changed

5 files changed

+10
-40
lines changed

.github/workflows/php_pest.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,18 @@ on:
88

99
jobs:
1010
pest:
11-
runs-on: ${{ matrix.operating-systems }}
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
15-
matrix:
16-
operating-systems:
17-
- ubuntu-latest
18-
php-versions:
19-
- 8.1
2015

2116
steps:
2217
- uses: actions/checkout@v3
2318

2419
- uses: shivammathur/setup-php@v2
2520
with:
26-
php-version: ${{ matrix.php-versions }}
21+
php-version: 8.1
2722
coverage: pcov
28-
extensions: mbstring
2923

3024
- id: composer-cache
3125
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

.github/workflows/php_phpcsf.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,17 @@ on:
88

99
jobs:
1010
phpcsf:
11-
runs-on: ${{ matrix.operating-systems }}
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
15-
matrix:
16-
operating-systems:
17-
- ubuntu-latest
18-
php-versions:
19-
- 8.1
2015

2116
steps:
2217
- uses: actions/checkout@v3
2318

2419
- uses: shivammathur/setup-php@v2
2520
with:
26-
php-version: ${{ matrix.php-versions }}
27-
coverage: pcov
21+
php-version: 8.1
2822

2923
- id: composer-cache
3024
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

.github/workflows/php_phpstan.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,17 @@ on:
88

99
jobs:
1010
phpstan:
11-
runs-on: ${{ matrix.operating-systems }}
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
15-
matrix:
16-
operating-systems:
17-
- ubuntu-latest
18-
php-versions:
19-
- 8.1
2015

2116
steps:
2217
- uses: actions/checkout@v3
2318

2419
- uses: shivammathur/setup-php@v2
2520
with:
26-
php-version: ${{ matrix.php-versions }}
27-
coverage: pcov
21+
php-version: 8.1
2822

2923
- id: composer-cache
3024
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

.github/workflows/php_psalm.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,17 @@ on:
88

99
jobs:
1010
psalm:
11-
runs-on: ${{ matrix.operating-systems }}
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
15-
matrix:
16-
operating-systems:
17-
- ubuntu-latest
18-
php-versions:
19-
- 8.1
2015

2116
steps:
2217
- uses: actions/checkout@v3
2318

2419
- uses: shivammathur/setup-php@v2
2520
with:
26-
php-version: ${{ matrix.php-versions }}
27-
coverage: pcov
21+
php-version: 8.1
2822

2923
- id: composer-cache
3024
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

.github/workflows/php_rector.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,17 @@ on:
88

99
jobs:
1010
rector:
11-
runs-on: ${{ matrix.operating-systems }}
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
15-
matrix:
16-
operating-systems:
17-
- ubuntu-latest
18-
php-versions:
19-
- 8.1
2015

2116
steps:
2217
- uses: actions/checkout@v3
2318

2419
- uses: shivammathur/setup-php@v2
2520
with:
26-
php-version: ${{ matrix.php-versions }}
27-
coverage: pcov
21+
php-version: 8.1
2822

2923
- id: composer-cache
3024
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)