Skip to content

Commit

Permalink
ci(backend): Update GitHub backend QA workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
maikbasel committed Jan 12, 2024
1 parent 8c9dc43 commit 0fdc377
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/backend_qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 0fdc377

Please sign in to comment.