We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c33acb commit 2dc619aCopy full SHA for 2dc619a
.github/workflows/ci.yml renamed to .github/workflows/ci.yml
@@ -5,10 +5,13 @@ jobs:
5
linter:
6
name: Code style
7
runs-on: ubuntu-20.04
8
+ strategy:
9
+ matrix:
10
+ php-version: [ '7.4', '8.0', '8.1' ]
11
steps:
12
- uses: actions/checkout@master
13
- uses: shivammathur/setup-php@v2
14
with:
- php-version: 7.4
15
+ php-version: ${{ matrix.php-version }}
16
- run: composer install --prefer-dist --no-interaction
17
- run: vendor/bin/php-cs-fixer fix --ansi --dry-run --using-cache=no --verbose
0 commit comments