From 088d6f777125176f014ff5518e21e6ff117194a2 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Thu, 12 Dec 2024 10:13:46 -0600 Subject: [PATCH] Fix deprecated action flag for codecov-action `file` is now `files` --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 76e03e8..c4626d7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -93,7 +93,7 @@ jobs: uses: codecov/codecov-action@v5 with: flags: unittests - file: ./coverage.xml + files: ./coverage.xml env_vars: OS,PYTHON_VERSION,UNSTABLE - name: Coveralls Parallel