mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
21 lines
322 B
HCL
21 lines
322 B
HCL
workflow "CI" {
|
|
on = "push"
|
|
resolves = ["Format", "Test"]
|
|
}
|
|
|
|
action "Dependencies" {
|
|
uses = "actions/[email protected]"
|
|
args = "ci"
|
|
}
|
|
|
|
action "Format" {
|
|
needs = "Dependencies"
|
|
uses = "actions/[email protected]"
|
|
args = "run format"
|
|
}
|
|
|
|
action "Test" {
|
|
needs = "Dependencies"
|
|
uses = "actions/[email protected]"
|
|
args = "test"
|
|
} |