Skip to content

Commit

Permalink
ci(backend): Update args parameters in backend QA workflow
Browse files Browse the repository at this point in the history
The args parameter in the GitHub Actions workflow for backend quality assurance was updated. A minor change was made to correct the path for src-tauri/Cargo.toml file by enclosing it in quotes ensuring its accurate parsing.

Refs: #8
  • Loading branch information
maikbasel committed Dec 21, 2023
1 parent 5ff1d33 commit b9ede20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/backend_qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions-rs/tarpaulin@v0.1
with:
version: '0.15.0'
args: '-- --test-threads 1 --manifest-path src-tauri/Cargo.toml --fail-under 90'
args: '-- --test-threads 1 --manifest-path "src-tauri/Cargo.toml" --fail-under 90'
out-type: 'Stdout'

- name: Run Rustfmt
Expand Down

0 comments on commit b9ede20

Please sign in to comment.