mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 06:46:08 +03:00
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
|
workflow "Main" {
|
||
|
on = "push"
|
||
|
resolves = ["PHPStan"]
|
||
|
}
|
||
|
|
||
|
action "PHPStan" {
|
||
|
uses = "docker://oskarstark/phpstan-ga"
|
||
|
secrets = ["GITHUB_TOKEN"]
|
||
|
args = "analyse src/ --level=0"
|
||
|
}
|