+8
-5
.tangled/workflows/test.yml
+8
-5
.tangled/workflows/test.yml
···
7
dependencies:
8
nixpkgs:
9
- clang
10
+
- rustup
11
12
steps:
13
+
- name: Get Toolchains
14
+
command: rustup toolchain install nightly
15
+
- name: Clippy (Nightly)
16
+
command: cargo +nightly clippy --locked --workspace --all-features --all-targets -- -Dwarnings
17
- name: Tests
18
+
command: |
19
+
cargo test --workspace
20
+
cargo +nightly test --workspace