From 04951225f9964732dfa6cdfe5f65f0217238bb7a Mon Sep 17 00:00:00 2001 From: Sachymetsu Date: Sun, 14 Dec 2025 12:32:12 +0100 Subject: [PATCH] chore: Add nightly toolchain for testing Change-Id: uzmynwqvsmtupznrlkxwlxstpqzlqlqn --- .tangled/workflows/test.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.tangled/workflows/test.yml b/.tangled/workflows/test.yml index 60d707e..2b3df9a 100644 --- a/.tangled/workflows/test.yml +++ b/.tangled/workflows/test.yml @@ -7,11 +7,14 @@ engine: nixery dependencies: nixpkgs: - clang - - cargo - - clippy + - rustup steps: - - name: Clippy - command: cargo clippy --locked --workspace --all-features --all-targets -- -Dwarnings - - name: Tests + - name: Get Toolchains + command: rustup toolchain install nightly + - name: Clippy (Nightly) + command: cargo +nightly clippy --locked --workspace --all-features --all-targets -- -Dwarnings + - name: Stable Tests command: cargo test --workspace + - name: Nightly Tests + command: cargo +nightly test --workspace -- 2.52.0