diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5e42627..e03ee61 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,4 +17,7 @@ jobs: run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y . "$HOME/.cargo/env" - cargo --version + - name: Check compilation + run: cargo check --all-targets + - name: Run tests + run: cargo test --all