tangled
alpha
login
or
join now
tobinio.dev
/
cargo-features-manager
0
fork
atom
a TUI like cli tool to manage the features of your rust-project dependencies
0
fork
atom
overview
issues
pulls
pipelines
add tangled ci workflow
tobinio.dev
1 week ago
4dedc54d
2746dc60
+31
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
lint.yml
+31
.tangled/workflows/lint.yml
reviewed
···
1
1
+
when:
2
2
+
- event: ["push", "manual"]
3
3
+
branch: ["main"]
4
4
+
- event: ["pull_request"]
5
5
+
branch: ["main"]
6
6
+
7
7
+
engine: "nixery"
8
8
+
9
9
+
dependencies:
10
10
+
nixpkgs:
11
11
+
- cargo
12
12
+
- rustc
13
13
+
- rustfmt
14
14
+
- clippy
15
15
+
- clang
16
16
+
17
17
+
steps:
18
18
+
- name: "Build"
19
19
+
command: "cargo build"
20
20
+
21
21
+
- name: "Check"
22
22
+
command: "cargo check --all-targets --all-features"
23
23
+
24
24
+
- name: "Test"
25
25
+
command: "cargo test --all-features"
26
26
+
27
27
+
- name: "Format"
28
28
+
command: "cargo fmt --all -- --check"
29
29
+
30
30
+
- name: "Lint"
31
31
+
command: "cargo clippy --all-targets --all-features -- -D warnings"