Skip to content

Commit

Permalink
chore(workflow): Relabel things
Browse files Browse the repository at this point in the history
  • Loading branch information
WidgetsBurritos committed Jan 4, 2019
1 parent bc4a08e commit baaca35
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/main.workflow
@@ -1,21 +1,21 @@
workflow "Test Readiness" {
workflow "Main Workflow" {
on = "push"
resolves = [
"test",
"phpcs",
"Code Style Analysis",
"Unit Tests",
]
}

action "./action-build/" {
uses = "./action-build/"
action "Build" {
uses = "./actions/build"
}

action "test" {
uses = "./action-test"
needs = ["./action-build/"]
action "Unit Tests" {
uses = "./actions/test"
needs = ["Build"]
}

action "phpcs" {
uses = "./action-phpcs"
needs = ["./action-build/"]
action "Code Style Analysis" {
uses = "./actions/phpcs"
needs = ["Build"]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit baaca35

Please sign in to comment.