Skip to content

Commit 64e4bfb

Browse files
committed
Update ci.yml
1 parent 01a4214 commit 64e4bfb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: .github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272
uses: actions-rs/cargo@v1
7373
with:
7474
command: check
75-
async:
76-
name: async
75+
future:
76+
name: future
7777
strategy:
7878
matrix:
7979
os:
@@ -87,9 +87,9 @@ jobs:
8787
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
8888
run: rustup update stable --no-self-update && rustup default stable
8989
- name: Test
90-
run: cargo test --no-default-features --features async
91-
full:
92-
name: full
90+
run: cargo test --no-default-features --features future
91+
sync:
92+
name: sync
9393
strategy:
9494
matrix:
9595
os:
@@ -103,14 +103,14 @@ jobs:
103103
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
104104
run: rustup update stable --no-self-update && rustup default stable
105105
- name: Test
106-
run: cargo test --no-default-features --features full
106+
run: cargo test
107107

108108
coverage:
109109
name: cargo tarpaulin
110110
runs-on: ubuntu-latest
111111
needs:
112-
- async
113-
- full
112+
- future
113+
- sync
114114
- build
115115
- clippy
116116
- rustfmt

0 commit comments

Comments
 (0)