From b6b5cbf1bba66ddc0c5f1061c1ca2e1010f1cd4b Mon Sep 17 00:00:00 2001 From: Matt George Date: Sun, 30 Oct 2022 04:49:31 -0600 Subject: [PATCH] fix toolchain command --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e660d75..6b1fe47 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 - name: "Install the nightly Rust toolchain" - run: rustup toolchain install -c rustfmt nightly + run: rustup toolchain install nightly -c rustfmt - name: "Check formatting" run: cargo +nightly fmt --check