Skip to content

Commit

Permalink
fix: Correct usage of actions-rs/cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
cdata committed Jul 15, 2023
1 parent 45ba6f8 commit e9d4dc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
- name: Run cargo test (async/tokio)
uses: actions-rs/cargo@v1
with:
command: test --features tokio
command: test
args: --features tokio
- name: Run cargo test (async/futures)
uses: actions-rs/cargo@v1
with:
command: test --features futures
command: test
args: --features futures

lints:
name: Lints
Expand Down

0 comments on commit e9d4dc6

Please sign in to comment.