first commit
This commit is contained in:
35
modules/psaddonsconnect/vendor/prestashop/circuit-breaker/.github/main.workflow
vendored
Normal file
35
modules/psaddonsconnect/vendor/prestashop/circuit-breaker/.github/main.workflow
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
workflow "Code Quality" {
|
||||
on = "push"
|
||||
resolves = [
|
||||
"PHPStan",
|
||||
"PHP-CS-Fixer",
|
||||
"Psalm",
|
||||
"PHPQA"
|
||||
]
|
||||
}
|
||||
|
||||
action "PHPStan" {
|
||||
uses = "docker://oskarstark/phpstan-ga:with-extensions"
|
||||
args = "analyse src tests --level max --configuration extension.neon"
|
||||
secrets = ["GITHUB_TOKEN"]
|
||||
}
|
||||
|
||||
action "PHP-CS-Fixer" {
|
||||
uses = "docker://oskarstark/php-cs-fixer-ga"
|
||||
secrets = ["GITHUB_TOKEN"]
|
||||
args = "--config=.php_cs.dist --diff --dry-run"
|
||||
}
|
||||
|
||||
action "Psalm" {
|
||||
needs="PHPStan"
|
||||
uses = "docker://mickaelandrieu/psalm-ga"
|
||||
secrets = ["GITHUB_TOKEN"]
|
||||
args = "--find-dead-code --diff --diff-methods"
|
||||
}
|
||||
|
||||
action "PHPQA" {
|
||||
needs="PHP-CS-Fixer"
|
||||
uses = "docker://mickaelandrieu/phpqa-ga"
|
||||
secrets = ["GITHUB_TOKEN"]
|
||||
args = "--report --tools phpcs:0,phpmd:0,phpcpd:0,parallel-lint:0,phpmetrics,phploc,pdepend --ignoredDirs vendor,tests"
|
||||
}
|
||||
11
modules/psaddonsconnect/vendor/prestashop/circuit-breaker/.github/release-drafter.yml
vendored
Normal file
11
modules/psaddonsconnect/vendor/prestashop/circuit-breaker/.github/release-drafter.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
change-template: '- $TITLE (#$NUMBER)'
|
||||
branches:
|
||||
- master
|
||||
template: |
|
||||
## Changelog
|
||||
|
||||
$CHANGES
|
||||
|
||||
### Contributors
|
||||
|
||||
$CONTRIBUTORS
|
||||
Reference in New Issue
Block a user