|
|
|
@ -25,7 +25,6 @@ jobs:
|
|
|
|
|
|
|
|
|
|
- name: Run cargo check
|
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
|
continue-on-error: true # WARNING: only for this example, remove it!
|
|
|
|
|
with:
|
|
|
|
|
command: check
|
|
|
|
|
|
|
|
|
@ -45,7 +44,6 @@ jobs:
|
|
|
|
|
|
|
|
|
|
- name: Run cargo test
|
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
|
continue-on-error: true # WARNING: only for this example, remove it!
|
|
|
|
|
with:
|
|
|
|
|
command: test
|
|
|
|
|
|
|
|
|
@ -66,14 +64,12 @@ jobs:
|
|
|
|
|
|
|
|
|
|
- name: Run cargo fmt
|
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
|
continue-on-error: true # WARNING: only for this example, remove it!
|
|
|
|
|
with:
|
|
|
|
|
command: fmt
|
|
|
|
|
args: --all -- --check
|
|
|
|
|
|
|
|
|
|
- name: Run cargo clippy
|
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
|
continue-on-error: true # WARNING: only for this example, remove it!
|
|
|
|
|
with:
|
|
|
|
|
command: clippy
|
|
|
|
|
args: -- -D warnings
|
|
|
|
|