From 098d5df395b6eed9b446a392be483559a06f3f2f Mon Sep 17 00:00:00 2001 From: Awiteb Date: Sun, 5 May 2024 20:05:43 +0300 Subject: [PATCH] chore(CI): Check the MSRV Because of `rust-toolchain.toml` file, now the rustc will install the channel that in it, so we need to override the MSRV in the `cargo` command --- .forgejo/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 7f31fc7..5d8fbba 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: https://codeberg.org/TheAwiteb/rust-action@v1.74 + - name: Check MSRV + run: cargo +1.74 build - name: Build the source code run: cargo build - name: Check the code format