Skip to content

Commit

Permalink
reorganize the code
Browse files Browse the repository at this point in the history
Signed-off-by: Xintao <[email protected]>
  • Loading branch information
hunterlxt committed Aug 4, 2020
1 parent 23df2b9 commit 2481fa2
Show file tree
Hide file tree
Showing 3 changed files with 658 additions and 640 deletions.
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

0 comments on commit 2481fa2

Please sign in to comment.