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