From 29e60dfa79c6bbfde620f3fb085406f298bcbbc4 Mon Sep 17 00:00:00 2001 From: Easton Potokar Date: Wed, 8 Jan 2025 13:32:49 -0500 Subject: [PATCH] switch to nightly for fmt action --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2eff19..be95e32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,8 @@ jobs: - name: Setup Rust toolchain and cache uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.83 + # use nightly to support custom formatting features + toolchain: nightly components: rustfmt,clippy - name: cargo fmt