From 0fdc377ca0f10fce34b4fb46f7af2e0a8ee80070 Mon Sep 17 00:00:00 2001 From: maikb Date: Fri, 12 Jan 2024 22:57:39 +0100 Subject: [PATCH] ci(backend): Update GitHub backend QA workflow Added caching and updated cargo-tarpaulin options in the GitHub backend QA workflow. The cache setup addition uses Swatinem/rust-cache at version 2, designed to improve workflow efficiency. --- .github/workflows/backend_qa.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend_qa.yml b/.github/workflows/backend_qa.yml index 728c7bb..dde765d 100644 --- a/.github/workflows/backend_qa.yml +++ b/.github/workflows/backend_qa.yml @@ -26,6 +26,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Setup Cache + uses: Swatinem/rust-cache@v2 + - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -51,4 +54,4 @@ jobs: use-tool-cache: true - name: Run cargo-tarpaulin - run: cargo tarpaulin --implicit-test-threads + run: cargo tarpaulin --implicit-test-threads --skip-clean