diff --git a/.github/main.workflow b/.github/main.workflow index d24d75a..8f4bd50 100644 --- a/.github/main.workflow +++ b/.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"] } diff --git a/action-build/Dockerfile b/actions/build/Dockerfile similarity index 100% rename from action-build/Dockerfile rename to actions/build/Dockerfile diff --git a/action-build/README.md b/actions/build/README.md similarity index 100% rename from action-build/README.md rename to actions/build/README.md diff --git a/action-build/entrypoint.sh b/actions/build/entrypoint.sh similarity index 100% rename from action-build/entrypoint.sh rename to actions/build/entrypoint.sh diff --git a/action-phpcs/Dockerfile b/actions/phpcs/Dockerfile similarity index 100% rename from action-phpcs/Dockerfile rename to actions/phpcs/Dockerfile diff --git a/action-phpcs/README.md b/actions/phpcs/README.md similarity index 100% rename from action-phpcs/README.md rename to actions/phpcs/README.md diff --git a/action-phpcs/entrypoint.sh b/actions/phpcs/entrypoint.sh similarity index 100% rename from action-phpcs/entrypoint.sh rename to actions/phpcs/entrypoint.sh diff --git a/action-test/Dockerfile b/actions/test/Dockerfile similarity index 100% rename from action-test/Dockerfile rename to actions/test/Dockerfile diff --git a/action-test/README.md b/actions/test/README.md similarity index 100% rename from action-test/README.md rename to actions/test/README.md diff --git a/action-test/entrypoint.sh b/actions/test/entrypoint.sh similarity index 100% rename from action-test/entrypoint.sh rename to actions/test/entrypoint.sh