From 7b53b711e243e37d73e7e4821b3e7d5ac2858616 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 22 Sep 2023 21:43:43 +0000 Subject: [PATCH] CI: Fix Codecov job command `cargo tarpaulin` has changed the case of one of its config options. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d66d4c137..eb9cd73f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,7 +137,7 @@ jobs: run: cargo run --release --example download-params --features download-params - name: Generate coverage report - run: cargo tarpaulin --engine llvm --all-features --release --timeout 600 --out Xml + run: cargo tarpaulin --engine llvm --all-features --release --timeout 600 --out xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v3.1.4