From bfbc5ab59bf2a1322efa65510ce515f39db75000 Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Tue, 2 Sep 2025 22:33:27 -0500 Subject: [PATCH] Update CI to run on new container --- .gitea/workflows/ci.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3c1d462..bbade8c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -10,7 +10,7 @@ env: jobs: build_and_test: name: Rust project - latest - runs-on: ubuntu-rustup + runs-on: rustup-stable strategy: matrix: toolchain: @@ -22,5 +22,3 @@ jobs: - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build --verbose - run: cargo test --verbose - -