Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ jobs:
- name: doc build
run: cargo doc --all-features

- name: Clippy with default
run: cargo clippy

- name: Clippy with tokio
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't mind tokio 和 async_std feature

run: cargo clippy -F tokio

- name: Clippy with async_std
run: cargo clippy -F async_std

- name: Run basic tests with tokio
run: make test basic

Expand Down
Loading