Skip to content

Commit d2151ca

Browse files
committed
action yaml fixed
1 parent dbf20fc commit d2151ca

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ on:
88

99
jobs:
1010
tests:
11-
name: Unit tests
1211
runs-on: ubuntu-latest
1312

1413
strategy:
1514
fail-fast: true
1615
matrix:
1716
php: [8.1, 8.2]
1817

19-
name: PHP ${{ matrix.php }}
18+
name: Unit tests PHP ${{ matrix.php }}
2019

2120
steps:
2221
- name: Checkout
@@ -36,15 +35,14 @@ jobs:
3635
run: vendor/bin/phpunit --verbose
3736

3837
static-analysis:
39-
name: Code analysis with PHPStan
4038
runs-on: ubuntu-latest
4139

4240
strategy:
4341
fail-fast: true
4442
matrix:
4543
php: [8.1, 8.2]
4644

47-
name: PHP ${{ matrix.php }}
45+
name: Code analysis with PHPStan PHP ${{ matrix.php }}
4846

4947
steps:
5048
- name: Checkout
@@ -64,15 +62,14 @@ jobs:
6462
run: vendor/bin/phpstan --xdebug analyze src --level 8
6563

6664
mutation-tests:
67-
name: Mutation tests with Infection
6865
runs-on: ubuntu-latest
6966

7067
strategy:
7168
fail-fast: true
7269
matrix:
7370
php: [8.1, 8.2]
7471

75-
name: PHP ${{ matrix.php }}
72+
name: Mutation tests with Infection PHP ${{ matrix.php }}
7673

7774
steps:
7875
- name: Checkout

0 commit comments

Comments
 (0)