From 072d1d2cade9be83d298e5ec34d6dbcbafb09682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6lfer?= Date: Sun, 27 Jul 2025 18:06:39 +0200 Subject: [PATCH] Using action --- .gitea/workflows/test.yaml | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 14ca191..49fbff1 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -6,22 +6,6 @@ jobs: build_and_test: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Install rustup - run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - echo "$HOME/.cargo/bin" >> $GITHUB_PATH - - - name: Install cargo - run: | - source $HOME/.cargo/env - rustup update stable - rustup default stable - - - name: Run tests - run: | - source $HOME/.cargo/env - cargo test - + - uses: actions/checkout@v4 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: cargo test --all-features