+17
.tangled/workflows/test.yml
+17
.tangled/workflows/test.yml
···
1
+
when:
2
+
- event: ["push", "pull_request"]
3
+
branch: main
4
+
5
+
engine: nixery
6
+
7
+
dependencies:
8
+
nixpkgs:
9
+
- clang
10
+
- cargo
11
+
- clippy
12
+
13
+
steps:
14
+
- name: Clippy
15
+
command: cargo clippy --locked --workspace --all-features --all-targets -- -Dwarnings
16
+
- name: Tests
17
+
command: cargo test --workspace