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