We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c7ddee commit 3d23e7dCopy full SHA for 3d23e7d
.github/workflows/ci.yml
@@ -29,6 +29,19 @@ jobs:
29
run: composer update --ansi --no-progress --prefer-dist --no-interaction
30
- run: vendor/bin/phpstan analyze
31
32
+ coding_standards:
33
+ name: Coding standards
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ - uses: shivammathur/setup-php@v2
38
+ with:
39
+ coverage: none
40
+ php-version: '8.1'
41
+ - name: Install dependencies
42
+ run: composer update --ansi --no-progress --prefer-dist --no-interaction
43
+ - run: vendor/bin/php-cs-fixer fix --dry-run --show-progress=dots --no-interaction
44
+
45
tests:
46
name: "Tests on PHP ${{ matrix.php }}${{ matrix.name_suffix }}"
47
runs-on: ubuntu-latest
0 commit comments