From 7510f5b2089ae8fd34af7f4661eaa721605d5aed Mon Sep 17 00:00:00 2001 From: Anton Dachauer Date: Fri, 24 May 2024 22:35:36 +0200 Subject: [PATCH] add codecov action --- .github/workflows/codecov.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 0000000..a98cc13 --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,17 @@ +name: 'Codecov' + +on: + pull_request: + push: + branches: + - main + +jobs: + tests: + runs-on: ubuntu-22.04 + steps: + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@3 + with: + verbose: true + token: ${{ secrets.CODECOV_TOKEN }}