From 56cdaabbae673cb46f4babdab96701fd585ffba7 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 27 Aug 2019 05:03:29 +0000 Subject: [PATCH] Add GitHub Actions CI --- .github/main.workflow | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..b1436b3 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,14 @@ +workflow "New workflow" { + on = "push" + resolves = ["new-action"] +} + +action "rust" { + uses = "docker://rust:1" + runs = ".travis/build.sh" +} + +action "new-action" { + uses = "owner/repo/path@ref" + needs = ["rust"] +}