From 1a52cda91257ae4c55c148a68498165839fba93c Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Tue, 26 Nov 2019 11:23:12 +0100 Subject: [PATCH] Fix yaml indent --- .github/workflows/rust.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cd64ea58..a3acc378 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,20 +10,21 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v1 - - name: Install Rust Stable - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true + - uses: actions/checkout@v1 - - name: Build - uses: actions-rs/cargo@v1 - with: - command: build - args: --verbose --manifest-path ./tokenizers/Cargo.toml + - name: Install Rust Stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true - - name: Run Tests + - name: Build + uses: actions-rs/cargo@v1 + with: + command: build + args: --verbose --manifest-path ./tokenizers/Cargo.toml + + - name: Run Tests uses: actions-rs/cargo@v1 with: command: test