From d597b90fc2bb6eee3376ef6cb8740c79a468aa37 Mon Sep 17 00:00:00 2001 From: oliver Date: Sat, 27 Jul 2024 14:58:38 -0600 Subject: [PATCH] manually install rust --- .gitea/workflows/rust.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/rust.yaml b/.gitea/workflows/rust.yaml index 9b32549..7eb0d36 100644 --- a/.gitea/workflows/rust.yaml +++ b/.gitea/workflows/rust.yaml @@ -14,11 +14,10 @@ jobs: strategy: matrix: toolchain: - - stable - - beta - nightly steps: - uses: actions/checkout@v4 + - run: curl https://sh.rustup.rs -sSf | sh -s -- -y - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build --verbose - run: cargo test --verbose