From 7f42417482db56bd4b86aec26f120d565412d40b Mon Sep 17 00:00:00 2001 From: epwalsh Date: Fri, 13 Dec 2019 13:51:12 -0800 Subject: [PATCH] fix yaml --- .github/workflows/rust.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4800540b..887467e7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,17 +25,17 @@ jobs: command: build args: --verbose --manifest-path ./tokenizers/Cargo.toml - - name: Lint with RustFmt - uses: actions-rs/cargo@v1 - with: - command: fmt - args: -- --check + - name: Lint with RustFmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: -- --check - - name: Lint with Clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - args: --all-targets --all-features -- -D warnings + - name: Lint with Clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all-targets --all-features -- -D warnings - name: Run Tests uses: actions-rs/cargo@v1