Skip to content

Commit 4afa42d

Browse files
committed
Rename composer check to analyze; remove misnamed CodeQL workflow
The CodeQL workflow did not actually run CodeQL — it ran PHPStan under a misleading name. Checks / Analyze already covers that.
1 parent c0f88b2 commit 4afa42d

3 files changed

Lines changed: 2 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: composer install --prefer-dist --no-progress --no-interaction --ignore-platform-req=ext-opentelemetry
4747

4848
- name: PHPStan
49-
run: composer check
49+
run: composer analyze
5050

5151
unit:
5252
name: Tests / Unit

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"scripts": {
2525
"format": "vendor/bin/pint",
2626
"format:check": "vendor/bin/pint --test",
27-
"check": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 512M",
27+
"analyze": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 512M",
2828
"test": "vendor/bin/phpunit --configuration phpunit.xml",
2929
"bench": "vendor/bin/phpbench run --report=benchmark"
3030
},

0 commit comments

Comments
 (0)