From 24c5ad8199c3f394518bdd936173e5b2736d8ec3 Mon Sep 17 00:00:00 2001 From: Luro02 <24826124+Luro02@users.noreply.github.com> Date: Wed, 25 Mar 2020 14:56:46 +0100 Subject: [PATCH] fix github actions syntax --- .github/workflows/rust.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2f88f4d..2e637e0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,28 +17,28 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: ${{ matrix.rust }} - override: true - components: rustfmt, clippy + with: + profile: minimal + toolchain: ${{ matrix.rust }} + override: true + components: rustfmt, clippy - uses: actions-rs/cargo@v1 - with: - command: build - args: --all-features + with: + command: build + args: --all-features - uses: actions-rs/cargo@v1 - with: - command: test - args: --all-features + with: + command: test + args: --all-features - uses: actions-rs/cargo@v1 - with: - command: doc - args: --all-features + with: + command: doc + args: --all-features - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check + with: + command: fmt + args: --all -- --check