|
1 |
| -name: CI (Quanta disabled) |
| 1 | +name: CI (Quanta enabled) |
2 | 2 |
|
3 | 3 | on:
|
4 | 4 | push:
|
@@ -67,21 +67,27 @@ jobs:
|
67 | 67 | if: ${{ matrix.rust == '1.70.0' }}
|
68 | 68 | run: ./.ci_extras/remove-examples-msrv.sh
|
69 | 69 |
|
70 |
| - - name: Run tests (debug, but no quanta feature) |
71 |
| - run: cargo test --no-default-features --features sync |
| 70 | + - name: Show cargo tree |
| 71 | + run: cargo tree --features 'sync, future, quanta' |
| 72 | + |
| 73 | + - name: Run tests (debug, sync, quanta features) |
| 74 | + run: cargo test --features 'sync, quanta' |
72 | 75 | env:
|
73 | 76 | RUSTFLAGS: '--cfg rustver'
|
74 | 77 |
|
75 |
| - - name: Run tests (release, but no quanta feature) |
76 |
| - run: cargo test --release --no-default-features --features sync |
| 78 | + - name: Run tests (release, sync, quanta features) |
| 79 | + run: cargo test --release --features 'sync, quanta' |
77 | 80 | env:
|
78 | 81 | RUSTFLAGS: '--cfg rustver'
|
79 | 82 |
|
80 |
| - - name: Run tests (future feature, but no quanta and sync features) |
81 |
| - run: cargo test --no-default-features --features future |
| 83 | + - name: Run tests (debug, future, quanta features) |
| 84 | + run: cargo test --features 'future, quanta' |
| 85 | + |
| 86 | + - name: Run tests (release, future, quanta features) |
| 87 | + run: cargo test --release --features 'future, quanta' |
82 | 88 |
|
83 |
| - - name: Run tests (future, sync and logging features, but no quanta feature) |
84 |
| - run: cargo test --no-default-features --features 'sync, future, logging' |
| 89 | + - name: Run tests (future, sync, logging, quanta features) |
| 90 | + run: cargo test --features 'sync, future, quanta, logging' |
85 | 91 |
|
86 |
| - - name: Run tests (sync feature, but no quanta feature, drop cache) |
87 |
| - run: cargo test --release --lib --no-default-features --features sync sync::cache::tests::ensure_gc_runs_when_dropping_cache -- --exact --ignored |
| 92 | + - name: Run tests (sync, quanta features, drop cache) |
| 93 | + run: cargo test --release --lib --features 'sync, quanta' sync::cache::tests::ensure_gc_runs_when_dropping_cache -- --exact --ignored |
0 commit comments