From abe0617db9f503181bdb8a28f72868ec75eaa2e2 Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 18 Aug 2023 11:59:23 +0200 Subject: [PATCH] added cargo install to workflows --- .gitea/workflows/cargo.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/cargo.yaml b/.gitea/workflows/cargo.yaml index 4b352c2..410641f 100644 --- a/.gitea/workflows/cargo.yaml +++ b/.gitea/workflows/cargo.yaml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Cargo install + run: apt update && apt -y install cargo - name: Test run: cargo test --verbose - name: Clippy