From 9c6878e2f4e954d45b5d23ee8aa3c1d2674da7ba Mon Sep 17 00:00:00 2001 From: Zanie Date: Thu, 15 Feb 2024 15:27:09 -0600 Subject: [PATCH] Add rough integration test to CI --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 894774b06..ec40465f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,15 @@ jobs: with: save-if: ${{ github.ref == 'refs/heads/main' }} - name: "Cargo Test" - run: cargo nextest run --all --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow + run: | + cargo nextest run --all --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow + - name: "Integration test" + run: | + alias uv="./target/debug/uv" + uv --help + uv venv + source .venv/bin/activate + uv install trio # Separate job for the nightly crate windows-trampoline: