mirror of https://github.com/sunface/rust-course
As stated in the document of `actions-rs/cargo@v1`, this action is not required usually, and we can use `cargo` command in run directly instead. For example, replace
```yaml
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
```
with
```yaml
- run: cargo fmt --all -- check
```
pull/818/head
parent
8a4eb00042
commit
d87fca0fbe
Loading…
Reference in new issue