We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8644e commit abcf9f2Copy full SHA for abcf9f2
.github/workflows/main.workflow
@@ -1,6 +1,6 @@
1
workflow "Main" {
2
on = "push"
3
- resolves = ["Format", "Clippy", "Build", "Test"]
+ resolves = ["Test"]
4
}
5
6
action "Format" {
@@ -10,15 +10,18 @@ action "Format" {
10
11
action "Clippy" {
12
uses = "icepuma/rust-action@master"
13
+ needs = ["Format"]
14
args = "cargo clippy -- -Dwarnings"
15
16
17
action "Build" {
18
19
+ needs = ["Clippy"]
20
args = "cargo build"
21
22
23
action "Test" {
24
25
+ needs = ["Build"]
26
args = "cargo test"
27
0 commit comments