diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a2ad3202..0d8073ed 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Install - run: rustup update stable - - name: Build - run: cargo build --verbose - - name: Build no-std - run: cargo build --no-default-features --verbose - - name: Run tests - run: cargo test --verbose - - name: Run clippy - run: cargo clippy --verbose -- -D warnings + - uses: actions/checkout@v2 + - name: Install + run: rustup update stable + - name: Build + run: cargo build --verbose + - name: Build no-std + run: cargo build --no-default-features --verbose + - name: Run tests + run: cargo test --verbose + - name: Run clippy + run: cargo clippy --verbose -- -D warnings