From 005d2638cbdfefa07eaab9046316643a362ba8a2 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 18 Sep 2023 09:58:09 +0200 Subject: [PATCH] fix(ci): Change tarpaulin output format from `Xml` to `xml`. It's better huh? --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e070189fd..96dcccc0e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -62,7 +62,7 @@ jobs: - name: Run tarpaulin run: | - rustup run stable cargo tarpaulin --skip-clean --profile cov --out Xml --features testing + rustup run stable cargo tarpaulin --skip-clean --profile cov --out xml --features testing env: CARGO_PROFILE_COV_INHERITS: 'dev' CARGO_PROFILE_COV_DEBUG: 'false'