2020    - uses : actions/checkout@v2 
2121    - run : cargo fmt -- --check 
2222    - run : cargo clippy -- -D clippy::all 
23-     - run : cargo test --all -- --nocapture 
23+     - run : cargo clippy --all-features -- -D clippy::all 
24+     - run : cargo test --all --all-features -- --ignored --nocapture 
2425    - run : cargo test --all --all-features -- --nocapture 
25-     - run : cargo bench --all -- --test 
2626    - run : cargo bench --all --all-features -- --test 
2727
2828  Linux-Nightly :
@@ -31,27 +31,24 @@ jobs:
3131    steps :
3232    - uses : actions/checkout@v2 
3333    - run : rustup default nightly 
34-     - run : cargo test --all -- --nocapture 
34+     - run : cargo test --all --all-features -- --ignored  --nocapture 
3535    - run : cargo test --all --all-features -- --nocapture 
36-     - run : cargo bench --all -- --test 
3736    - run : cargo bench --all --all-features -- --test 
3837
3938  Mac-Stable :
4039    name : Mac 
4140    runs-on : macos-latest 
4241    steps :
4342    - uses : actions/checkout@v2 
44-     - run : cargo test --all -- --nocapture 
43+     - run : cargo test --all --all-features -- --ignored  --nocapture 
4544    - run : cargo test --all --all-features -- --nocapture 
46-     - run : cargo bench --all -- --test 
4745    - run : cargo bench --all --all-features -- --test 
4846
4947  Win-Stable :
5048    name : Windows 
5149    runs-on : windows-latest 
5250    steps :
5351    - uses : actions/checkout@v2 
54-     - run : cargo test --all -- --nocapture 
52+     - run : cargo test --all --all-features -- --ignored  --nocapture 
5553    - run : cargo test --all --all-features -- --nocapture 
56-     - run : cargo bench --all -- --test 
5754    - run : cargo bench --all --all-features -- --test 
0 commit comments