From 75c4650da3e2cfe473995ce134fb5961a2a1b55e Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Thu, 22 Sep 2022 19:36:01 +0900 Subject: [PATCH] fixed indent --- .github/workflows/rust.yml | 56 +++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c125d72e..839ca177 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,31 +16,31 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - components: rustfmt - override: true - - name: Fmt Check - run: cargo fmt -- --check - - name: Prepare Clippy - run: rustup component add clippy - - name: Run clippy action to produce annotations - uses: actions-rs/clippy-check@v1 - with: - args: --all-targets -- -D warnings - token: ${{ secrets.GITHUB_TOKEN }} - - name: Setup Cross Compile Crate - run: cargo install cross - - name: Setup Cross Compile Environment - run: rustup target add x86_64-unknown-linux-musl x86_64-pc-windows-msvc aarch64-apple-darwin x86_64-apple-darwin - - name: Linux gnu Build - run: cargo build --verbose - - name: Run tests - env: - RUST_TEST_THREADS: 1 - run: cargo test --verbose \ No newline at end of file + - uses: actions/checkout@v2 + with: + submodules: recursive + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + components: rustfmt + override: true + - name: Fmt Check + run: cargo fmt -- --check + - name: Prepare Clippy + run: rustup component add clippy + - name: Run clippy action to produce annotations + uses: actions-rs/clippy-check@v1 + with: + args: --all-targets -- -D warnings + token: ${{ secrets.GITHUB_TOKEN }} + - name: Setup Cross Compile Crate + run: cargo install cross + - name: Setup Cross Compile Environment + run: rustup target add x86_64-unknown-linux-musl x86_64-pc-windows-msvc aarch64-apple-darwin x86_64-apple-darwin + - name: Linux gnu Build + run: cargo build --verbose + - name: Run tests + env: + RUST_TEST_THREADS: 1 + run: cargo test --verbose \ No newline at end of file