Skip to content

Commit

Permalink
Add PHP 8.1 support to GitHub workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devanych committed Jan 26, 2022
1 parent b545498 commit b3126f5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -37,8 +37,9 @@ jobs:
- windows-latest

php:
- "7.4"
- "8.0"
- 7.4
- 8.0
- 8.1

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
- ubuntu-latest

php:
- "7.4"
- 8.1

steps:
- name: Checkout
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/static.yml
Expand Up @@ -33,8 +33,9 @@ jobs:
- ubuntu-latest

php:
- "7.4"
- "8.0"
- 7.4
- 8.0
- 8.1

steps:
- name: Checkout
Expand All @@ -43,7 +44,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
php-version: ${{ matrix.php }}
tools: composer:v2, cs2pr
coverage: none

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -33,9 +33,9 @@
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"roave/infection-static-analysis-plugin": "^1.14",
"roave/infection-static-analysis-plugin": "^1.16",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.9",
"vimeo/psalm": "^4.18",
"yiisoft/files": "^1.0",
"yiisoft/psr-dummy-provider": "^1.0",
"yiisoft/test-support": "^1.3"
Expand Down

0 comments on commit b3126f5

Please sign in to comment.