From 0a509c00803ab3632e4e48c3f09445c7872d09ff Mon Sep 17 00:00:00 2001 From: EETagent Date: Wed, 26 Oct 2022 14:44:49 +0200 Subject: [PATCH] style: spaces between action tasks --- .github/workflows/rust.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c03a557..c2cad19 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,6 +24,7 @@ jobs: toolchain: stable override: true default: true + - name: Set up cargo cache 📦 uses: actions/cache@v3 continue-on-error: false @@ -36,7 +37,9 @@ jobs: target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-cargo- + - name: Build 🔨 run: cargo build --verbose + - name: Run tests 🚀 run: cargo test --all --verbose