Fix syntax errors in the check-lint-test workflow
All checks were successful
Check, lint and test / Check, lint and test (push) Successful in 1m34s

This commit is contained in:
Paul van Tilburg 2024-07-27 15:41:27 +02:00
parent 1146e444b3
commit 70b59022e7
Signed by: paul
GPG key ID: C6DE073EDA9EEC4D

View file

@ -16,18 +16,13 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Run cargo check - name: Run cargo check
uses: https://github.com/actions-rs/cargo@v1 run: cargo check --all-features
with:
command: check
- name: Run cargo clippy - name: Run cargo clippy
uses: https://github.com/actions-rs/cargo@v1 run: cargo clippy -- -D warnings
with:
command: clippy
args: -- -D warnings
- name: Run cargo fmt - name: Run cargo fmt
args: --all -- --check run: cargo fmt --all -- --check
- name: Run cargo test - name: Run cargo test
run: cargo test --all-features run: cargo test --all-features