diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 321b1e1..23ce8f7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,9 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Check Rust installation - run: cargo --version - - name: Check compilation - run: cargo check --all-targets - - name: Run tests - run: cargo test --all + - name: Verify Rust toolchain + run: | + cargo --version + rustc --version