Add GitHub Actions CI

This commit is contained in:
James 2019-08-27 05:03:29 +00:00 committed by GitHub
parent a02e8a1624
commit 56cdaabbae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
.github/main.workflow vendored Normal file
View File

@ -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"]
}