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 28445a0
Show file tree
Hide file tree
Showing 3 changed files with 657 additions and 639 deletions.
13 changes: 5 additions & 8 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
Loading

0 comments on commit 28445a0

Please sign in to comment.