From 659b53ed3c94ff1338450b4e81e5b733f60232f3 Mon Sep 17 00:00:00 2001 From: Jijeong Lee Date: Mon, 27 Nov 2023 11:00:14 -0800 Subject: [PATCH] add codecov report workflow --- .github/workflows/codecov.yml | 14 ++++++++++++++ 1 file changed, 14 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 000000000..92836cbdb --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,14 @@ +name: codecov +on: + pull_request: + +jobs: + run-codecov: + runs-on: ubuntu-latest + steps: + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + +