aboutsummaryrefslogtreecommitdiff
path: root/.github/main.workflow
diff options
context:
space:
mode:
Diffstat (limited to '.github/main.workflow')
-rw-r--r--.github/main.workflow4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/main.workflow b/.github/main.workflow
index 995aac3..7d21b0c 100644
--- a/.github/main.workflow
+++ b/.github/main.workflow
@@ -8,7 +8,7 @@ action "Test" {
args = "test"
}
-action "Covergage" {
+action "Coverage" {
uses = "./.github/action"
args = "lein cloverage --junit"
needs = ["Test"]
@@ -17,7 +17,7 @@ action "Covergage" {
action "Package" {
uses = "./.github/action"
args = "package"
- needs = ["Covergage"]
+ needs = ["Coverage"]
}
action "Deploy to pages" {