From 2b00648425638a4f1b47342c407faa4886c1139a Mon Sep 17 00:00:00 2001 From: haraldschellander Date: Mon, 25 Nov 2024 10:54:28 +0100 Subject: [PATCH] Create main.yml Add workflow for code coverage --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fb72e69 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,10 @@ +steps: +- uses: actions/checkout@main +- uses: codecov/codecov-action@v5 + with: + fail_ci_if_error: true # optional (default = false) + files: ./coverage1.xml,./coverage2.xml # optional + flags: unittests # optional + name: codecov-umbrella # optional + token: ${{ secrets.CODECOV_TOKEN }} + verbose: true # optional (default = false)