From 977411fccb9951ac136517b772ee6d1aec447702 Mon Sep 17 00:00:00 2001 From: Kimbug Date: Wed, 25 Oct 2023 18:22:23 +0900 Subject: [PATCH] feat(action): add a github action for codecov --- .github/workflows/codecov.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/codecov.yaml diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml new file mode 100644 index 00000000..2499d4b9 --- /dev/null +++ b/.github/workflows/codecov.yaml @@ -0,0 +1,6 @@ +name: Codecov +uses: codecov/codecov-action@v3 +run-name: Running test files & coverage 🚀 +on: [push] +env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}