We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c0c416 commit af408faCopy full SHA for af408fa
1 file changed
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
12
- php: [ 7.4 ]
+ php: [ 7.4, 8.0, 8.1 ]
13
version: [ lowest, standard ]
14
elastic: [ 7.12.1 ]
15
@@ -39,19 +39,18 @@ jobs:
39
name: Composer standard
40
run: make composer
41
42
- - if: matrix.php == '7.4'
+ - if: matrix.php == '8.1'
43
name: Coding standard
44
run: make cs
45
46
- - if: matrix.php == '7.4' && matrix.version == 'lowest'
+ - if: matrix.version == 'lowest'
47
name: PHPStan lowest
48
run: make phpstan-lowest
49
50
- - if: matrix.php == '7.4' && matrix.version == 'standard'
+ - if: matrix.version == 'standard'
51
name: PHPStan standard
52
run: make phpstan
53
54
55
- name: Tests
+ - name: Tests
56
run: make tests
57
0 commit comments