Skip to content

Commit 2dc619a

Browse files
authored
feat: add php 8 on ci
1 parent 7c33acb commit 2dc619a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml renamed to .github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ jobs:
55
linter:
66
name: Code style
77
runs-on: ubuntu-20.04
8+
strategy:
9+
matrix:
10+
php-version: [ '7.4', '8.0', '8.1' ]
811
steps:
912
- uses: actions/checkout@master
1013
- uses: shivammathur/setup-php@v2
1114
with:
12-
php-version: 7.4
15+
php-version: ${{ matrix.php-version }}
1316
- run: composer install --prefer-dist --no-interaction
1417
- run: vendor/bin/php-cs-fixer fix --ansi --dry-run --using-cache=no --verbose

0 commit comments

Comments
 (0)