diff --git a/.github/main.workflow b/.github/main.workflow index d87db4f984b87add82175987daed8ed21a089419..d56d42ef98dcd8a49eaa3cec41c67441ce7e448b 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -4,18 +4,18 @@ workflow "main" { } action "lint" { - uses = "../test/lint" + uses = "./ci/lint" } action "fmt" { - uses = "../test/fmt" + uses = "./ci/fmt" } action "test" { - uses = "../test/test" + uses = "./ci/test" secrets = ["CODECOV_TOKEN"] } action "bench" { - uses = "../test/bench" + uses = "./ci/bench" }