Skip to content

Commit

Permalink
Fix GitHub coverage workflow (#3288)
Browse files Browse the repository at this point in the history
For some reason `tarpaulin` no longer recognises the "Xml" format
output spelled with a upper case 'X'.

Change `Xml` to `xml`
  • Loading branch information
HalidOdat authored Sep 18, 2023
1 parent 9da6874 commit 9c7e10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: tarpaulin
args: --workspace --features intl --ignore-tests --engine llvm --out Xml
args: --workspace --features intl --ignore-tests --engine llvm --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v3

Expand Down

0 comments on commit 9c7e10c

Please sign in to comment.