diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9db6001..99a3e64 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,12 +12,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check Rust installation - run: | - which cargo || echo "cargo not found" - cargo --version || echo "cargo not available" + run: cargo --version - name: Check compilation - run: | - cargo check --all-targets || echo "check failed" + run: cargo check --all-targets - name: Run tests - run: | - cargo test --all || echo "tests failed" + run: cargo test --all + - name: Run clippy + run: cargo clippy --all -- -D warnings