From 70b59022e74dcf0ec7cb76c3d8d3ce60a2152500 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Sat, 27 Jul 2024 15:41:27 +0200 Subject: [PATCH] Fix syntax errors in the check-lint-test workflow --- .forgejo/workflows/check-lint-test.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/check-lint-test.yml b/.forgejo/workflows/check-lint-test.yml index caab096..b87f31a 100644 --- a/.forgejo/workflows/check-lint-test.yml +++ b/.forgejo/workflows/check-lint-test.yml @@ -16,18 +16,13 @@ jobs: uses: actions/checkout@v3 - name: Run cargo check - uses: https://github.com/actions-rs/cargo@v1 - with: - command: check + run: cargo check --all-features - name: Run cargo clippy - uses: https://github.com/actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings + run: cargo clippy -- -D warnings - name: Run cargo fmt - args: --all -- --check + run: cargo fmt --all -- --check - name: Run cargo test run: cargo test --all-features