Skip to content
This repository was archived by the owner on Oct 14, 2022. It is now read-only.

Commit 3e3e0cb

Browse files
committed
Add php 8.0 & 8.1 to CI matrix
1 parent 46392ed commit 3e3e0cb

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ on:
55
jobs:
66
composer-install:
77
strategy:
8+
fail-fast: false
89
matrix:
9-
php: [7.4]
10+
php: [7.4, "8.0", 8.1]
1011
composer: [lowest, current, highest]
1112
runs-on: ubuntu-latest
1213
container:
@@ -29,10 +30,11 @@ jobs:
2930
if: matrix.composer == 'highest'
3031
qa:
3132
strategy:
33+
fail-fast: false
3234
matrix:
33-
php: [7.4]
35+
php: [7.4, "8.0", 8.1]
3436
composer: [lowest, current, highest]
35-
qa: [lint, cs, stan, psalm, unit-ci, infection, composer-require-checker, composer-unused]
37+
qa: [lint, cs, stan, psalm, unit, infection, composer-require-checker, composer-unused]
3638
needs: composer-install
3739
runs-on: ubuntu-latest
3840
container:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# set all to phony
2-
SHELL=bash
2+
SHELL=sh
33

44
.PHONY: *
55

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"php-parallel-lint/php-parallel-lint": "^1.3",
2121
"phpstan/phpstan": "^0.12.99",
2222
"squizlabs/php_codesniffer": "^3.6",
23-
"vimeo/psalm": "^3.4",
24-
"wyrihaximus/test-utilities": "^2.0"
23+
"vimeo/psalm": "^3.18",
24+
"wyrihaximus/test-utilities": "^2.4"
2525
},
2626
"config": {
2727
"platform": {

0 commit comments

Comments
 (0)