From e60c43b95f369cf48990405662193898827e0cf5 Mon Sep 17 00:00:00 2001 From: Phosphorus Date: Sun, 17 Sep 2023 18:49:07 -0300 Subject: [PATCH] fix: solve the pipeline --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b80bb6..cd5c593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,10 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + components: rustfmt, clippy - run: rustup component add rustfmt - uses: actions-rs/cargo@v1 with: @@ -28,6 +32,9 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly - uses: Swatinem/rust-cache@v2 - name: Install LeptosFmt run: cargo install leptosfmt --version 0.1.13 @@ -40,6 +47,10 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + components: rustfmt, clippy - uses: Swatinem/rust-cache@v2 - name: cargo clippy uses: actions-rs/cargo@v1