chore: Add nightly toolchain for testing #5

merged
opened by sachy.dev targeting main from nightly-ci
Changed files
+8 -5
.tangled
workflows
+8 -5
.tangled/workflows/test.yml
··· 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
··· 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: Stable Tests 18 command: cargo test --workspace 19 + - name: Nightly Tests 20 + command: cargo +nightly test --workspace