From b6f61bc7c6bd19480b74880f8b695d9be906df5e Mon Sep 17 00:00:00 2001 From: Neal Fachan Date: Wed, 17 Jan 2024 22:43:27 +0000 Subject: [PATCH] Fix yaml error --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4a7d3cd..f407ee3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,16 +21,16 @@ jobs: uses: DeterminateSystems/flake-checker-action@main with: fail-mode: true - - name: Set up Rust Cache - uses: actions/cache@v3 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: maelstrom-${{ hashFiles('**/Cargo.lock') }} + - name: Set up Rust Cache + uses: actions/cache@v3 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: maelstrom-${{ hashFiles('**/Cargo.lock') }} - name: Check Rust Formatting run: nix develop --ignore-env --keep TERM --keep RUSTFLAGS --keep CARGO_TERM_COLOR --command cargo fmt --check - name: Lint Rust Code