Skip to content

Commit

Permalink
Reorder CI steps for faster failure
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarb committed Apr 15, 2022
1 parent 4219eb8 commit b512d0f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ jobs:
target/
key: ${{ runner.os }}-cargo-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml') }}
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo build --verbose --release
- run: cargo test --verbose --release
- run: cargo build --verbose --features=no_cc
- run: cargo test --verbose --features=no_cc
- run: cargo build --verbose --release --features=no_cc
- run: cargo test --verbose --release --features=no_cc
- run: cargo build --verbose --features=nightly
if: ${{ matrix.toolchain == 'nightly' }}
- run: cargo test --verbose --features=nightly
if: ${{ matrix.toolchain == 'nightly' }}
- run: cargo build --verbose --release
- run: cargo build --verbose --release --features=no_cc
- run: cargo build --verbose --release --features=nightly
if: ${{ matrix.toolchain == 'nightly' }}
- run: cargo test --verbose
- run: cargo test --verbose --features=no_cc
- run: cargo test --verbose --features=nightly
if: ${{ matrix.toolchain == 'nightly' }}
- run: cargo test --verbose --release
- run: cargo test --verbose --release --features=no_cc
- run: cargo test --verbose --release --features=nightly
if: ${{ matrix.toolchain == 'nightly' }}
- run: cargo bench --verbose
Expand Down

0 comments on commit b512d0f

Please sign in to comment.