From 8002913014e04d58c6ed6ac97a9bc405e828ce47 Mon Sep 17 00:00:00 2001 From: Jasper Visser Date: Fri, 28 Aug 2020 23:03:01 +0200 Subject: [PATCH] Fixed yml indenting --- .github/workflows/rust.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7469b95..6630584 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,11 +15,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install minimal nightly with clippy and rustfmt - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - components: rustfmt, clippy + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + components: rustfmt, clippy - name: Build run: cargo build --verbose - name: Run tests