Skip to content

Commit

Permalink
correct actions-rs/cargo args to use string
Browse files Browse the repository at this point in the history
  • Loading branch information
vadixidav committed Feb 3, 2022
1 parent c7e03ec commit e98e170
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -62,12 +62,12 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: rustc
args:
- --no-default-features
- --features
- nalgebra,ndarray
- --target=armv7a-none-eabi
- --manifest-path=ensure_no_std/Cargo.toml
args: >-
--no-default-features
--features
nalgebra,ndarray
--target=armv7a-none-eabi
--manifest-path=ensure_no_std/Cargo.toml
tests:
name: tests
Expand Down

0 comments on commit e98e170

Please sign in to comment.