mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
Add a workflow for running tests
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
workflow "CI" {
|
||||||
|
on = "push"
|
||||||
|
resolves = "Test"
|
||||||
|
}
|
||||||
|
|
||||||
|
action "Dependencies" {
|
||||||
|
uses = "actions/[email protected]"
|
||||||
|
args = "ci"
|
||||||
|
}
|
||||||
|
|
||||||
|
action "Test" {
|
||||||
|
needs = "Dependencies"
|
||||||
|
uses = "actions/[email protected]"
|
||||||
|
args = "test"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user