Test some GitHub Actions (PHPStan)

This commit is contained in:
Kamil Kokot
2019-01-30 17:35:20 +01:00
parent f615b310c1
commit 4e62f3929b
2 changed files with 11 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -1,3 +1,4 @@
/.github export-ignore
/features export-ignore
/tests export-ignore

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

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