From f4763cf6fd667158c12c4a43791c96f48866ce66 Mon Sep 17 00:00:00 2001 From: Femi Olah Date: Fri, 22 Nov 2024 22:43:47 +0100 Subject: [PATCH] update rust toolchain --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d824b0e..6bbe559 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,10 @@ name: CI # Continuous Integration on: pull_request: + +env: + CARGO_INCREMENTAL: 0 + CARGO_TERM_COLOR: always jobs: fmt: @@ -9,5 +13,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Update Rust toolchain + run: actions-rust-lang/setup-rust-toolchain@v1 - name: Check formatting run: cargo fmt --check --all