Skip to content

Commit c83f18f

Browse files
committed
Fix CI
1 parent 7a45d7e commit c83f18f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/main.workflow

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ workflow "main" {
44
}
55

66
action "lint" {
7-
uses = "../test/lint"
7+
uses = "./ci/lint"
88
}
99

1010
action "fmt" {
11-
uses = "../test/fmt"
11+
uses = "./ci/fmt"
1212
}
1313

1414
action "test" {
15-
uses = "../test/test"
15+
uses = "./ci/test"
1616
secrets = ["CODECOV_TOKEN"]
1717
}
1818

1919
action "bench" {
20-
uses = "../test/bench"
20+
uses = "./ci/bench"
2121
}

0 commit comments

Comments
 (0)