From 8ec4e1856965224f18b1a954872fd76086a9721a Mon Sep 17 00:00:00 2001 From: Kareem Mahlees Date: Thu, 14 Sep 2023 16:23:59 +0300 Subject: [PATCH] ci: codecov workflow --- .github/workflows/codecov.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..02e0bbf --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,18 @@ +name: codecov + +on: + push: + branches: + - master + - main + pull_request: + +jobs: + codecov: + name: codecov + runs-on: ubuntu-latest + steps: + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}