Skip to content

Commit f538914

Browse files
committed
gh
1 parent 80bb523 commit f538914

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/linux.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,20 @@ jobs:
4040
path: ~/.cargo/bin
4141
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-tarpaulin
4242

43-
- name: Run tests
43+
- name: Run tests (tokio)
4444
uses: actions-rs/cargo@v1
4545
timeout-minutes: 40
4646
with:
4747
command: test
4848
args: --all --no-fail-fast --features=ntex/tokio -- --nocapture
4949

50+
- name: Run tests (compio)
51+
uses: actions-rs/cargo@v1
52+
timeout-minutes: 40
53+
with:
54+
command: test
55+
args: --all --no-fail-fast --features=ntex/compio -- --nocapture
56+
5057
- name: Install tarpaulin
5158
if: matrix.version == '1.75.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
5259
continue-on-error: true

.github/workflows/osx.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions-rs/cargo@v1
4141
with:
4242
command: test
43-
args: --all --no-fail-fast --features=ntex/tokio -- --nocapture
43+
args: --all --no-fail-fast --features=ntex/compio -- --nocapture
4444

4545
- name: Clear the cargo caches
4646
run: |

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ jobs:
6363
uses: actions-rs/cargo@v1
6464
with:
6565
command: test
66-
args: --all --features=ntex/tokio -- --nocapture
66+
args: --all --features=ntex/compio -- --nocapture

0 commit comments

Comments
 (0)