From 4340f3909662676264af3268e67eb1c580555c88 Mon Sep 17 00:00:00 2001 From: Vasiliy Stelmachenok Date: Sat, 28 Mar 2026 12:41:47 +0300 Subject: [PATCH] ci: Use stable toolchain for Rust part I was wondering why Rust CI always fails, because my local tests run without errors. I think we should abstain from using nightly toolchain here, as we are building chwd on top of stable one anyway. Or we can do separate tests for nightly. Signed-off-by: Vasiliy Stelmachenok --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 13278d37..87011999 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,7 +31,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable override: true components: rustfmt, clippy