Added PHPStan action (#530)

This commit is contained in:
Tobias Nyholm 2019-01-09 20:36:21 +01:00 committed by GitHub
parent b725ab728e
commit fb9892f1f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,10 @@
workflow "Main" {
on = "push"
resolves = ["PHPStan"]
}
action "PHPStan" {
uses = "docker://oskarstark/phpstan-ga"
secrets = ["GITHUB_TOKEN"]
args = "analyse src/ --level=0"
}