Browse Source

Fix GitHub coverage workflow (#3288)

For some reason `tarpaulin` no longer recognises the "Xml" format
output spelled with a upper case 'X'.

Change `Xml` to `xml`
pull/3284/head
Haled Odat 1 year ago committed by GitHub
parent
commit
9c7e10cf82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/rust.yml

2
.github/workflows/rust.yml

@ -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

Loading…
Cancel
Save