tangled
alpha
login
or
join now
sachy.dev
/
nailpit
4
fork
atom
A pit full of rusty nails
4
fork
atom
overview
issues
1
pulls
pipelines
chore: Add nightly toolchain for testing
sachy.dev
3 months ago
a4d2f58b
3a7e7d57
2/2
miri.yml
success
1min 51s
test.yml
success
1min 45s
+8
-5
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
test.yml
+8
-5
.tangled/workflows/test.yml
···
7
7
dependencies:
8
8
nixpkgs:
9
9
- clang
10
10
-
- cargo
11
11
-
- clippy
10
10
+
- rustup
12
11
13
12
steps:
14
14
-
- name: Clippy
15
15
-
command: cargo clippy --locked --workspace --all-features --all-targets -- -Dwarnings
13
13
+
- name: Get Toolchains
14
14
+
command: rustup toolchain install nightly
15
15
+
- name: Clippy (Nightly)
16
16
+
command: cargo +nightly clippy --locked --workspace --all-features --all-targets -- -Dwarnings
16
17
- name: Tests
17
17
-
command: cargo test --workspace
18
18
+
command: |
19
19
+
cargo test --workspace
20
20
+
cargo +nightly test --workspace