mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2025-07-23 07:48:29 +00:00
Add GitHub Actions CI
This commit is contained in:
parent
a02e8a1624
commit
56cdaabbae
14
.github/main.workflow
vendored
Normal file
14
.github/main.workflow
vendored
Normal 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"]
|
||||||
|
}
|
Loading…
Reference in a new issue