File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Sourced from https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md#
2
2
name : Rust
3
3
on : [push, pull_request]
4
+ defaults :
5
+ run :
6
+ working-directory : rust
4
7
jobs :
5
8
check :
6
9
name : Check
12
15
profile : minimal
13
16
toolchain : stable
14
17
override : true
15
- - run : cd rust/hello-world && cargo check
18
+ - run : cargo check
16
19
17
20
test :
18
21
name : Test Suite
24
27
profile : minimal
25
28
toolchain : stable
26
29
override : true
27
- - run : cd rust/hello-world && cargo test
30
+ - run : cargo test
28
31
29
32
fmt :
30
33
name : Rustfmt
37
40
toolchain : stable
38
41
override : true
39
42
- run : rustup component add rustfmt
40
- - run : cd rust/hello-world && cargo fmt --all -- --check
43
+ - run : cargo fmt --all -- --check
41
44
42
45
clippy :
43
46
name : Clippy
50
53
toolchain : stable
51
54
override : true
52
55
- run : rustup component add clippy
53
- - run : cd rust/hello-world && cargo clippy -- --D warnings
56
+ - run : cargo clippy -- --D warnings
Original file line number Diff line number Diff line change
1
+ [workspace ]
2
+
3
+ members = [
4
+ " assembly-line/" ,
5
+ " hello-world/" ,
6
+ " leap/" ,
7
+ " lucians-luscious-lasagna/" ,
8
+ " semi-structured-logs/" ,
9
+ ]
You can’t perform that action at this time.
0 commit comments