Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support failpoints group #55

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- uses: actions/checkout@v2
- run: cargo fmt -- --check
- run: cargo clippy -- -D clippy::all
- run: cargo test --all -- --nocapture
- run: cargo clippy --all-features -- -D clippy::all
- run: cargo test --all --all-features -- --ignored --nocapture
- run: cargo test --all --all-features -- --nocapture
- run: cargo bench --all -- --test
- run: cargo bench --all --all-features -- --test

Linux-Nightly:
Expand All @@ -31,27 +31,24 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: rustup default nightly
- run: cargo test --all -- --nocapture
- run: cargo test --all --all-features -- --ignored --nocapture
- run: cargo test --all --all-features -- --nocapture
- run: cargo bench --all -- --test
- run: cargo bench --all --all-features -- --test

Mac-Stable:
name: Mac
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: cargo test --all -- --nocapture
- run: cargo test --all --all-features -- --ignored --nocapture
- run: cargo test --all --all-features -- --nocapture
- run: cargo bench --all -- --test
- run: cargo bench --all --all-features -- --test

Win-Stable:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: cargo test --all -- --nocapture
- run: cargo test --all --all-features -- --ignored --nocapture
- run: cargo test --all --all-features -- --nocapture
- run: cargo bench --all -- --test
- run: cargo bench --all --all-features -- --test
- run: cargo bench --all --all-features -- --test
Loading