mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-25 22:36:06 +03:00
Adding Roave BC check
This commit is contained in:
parent
f84f757ae2
commit
15624afa79
10
.github/main.workflow
vendored
10
.github/main.workflow
vendored
@ -1,10 +1,16 @@
|
|||||||
workflow "Main" {
|
workflow "Main" {
|
||||||
on = "push"
|
on = "push"
|
||||||
resolves = ["PHPStan"]
|
resolves = ["Roave BC Check", "PHPStan"]
|
||||||
|
}
|
||||||
|
|
||||||
|
action "Roave BC Check" {
|
||||||
|
uses = "docker://nyholm/roave-bc-check-ga"
|
||||||
|
secrets = ["GITHUB_TOKEN"]
|
||||||
|
args = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
action "PHPStan" {
|
action "PHPStan" {
|
||||||
uses = "docker://oskarstark/phpstan-ga"
|
uses = "docker://oskarstark/phpstan-ga"
|
||||||
secrets = ["GITHUB_TOKEN"]
|
secrets = ["GITHUB_TOKEN"]
|
||||||
args = "analyse src/ --level=0"
|
args = "analyse src/"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user