mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 12:25:38 +01: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 New Issue
Block a user