From 36d18701736f9d0e007409cacab35f90778b3953 Mon Sep 17 00:00:00 2001 From: Timothy Quilling Date: Tue, 8 Aug 2023 14:50:11 -0400 Subject: [PATCH] feat: codecov --- .github/workflows/coverage.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 00000000..0bc0036d --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,15 @@ +name: Coverage report + +on: + push: + workflow_dispatch: + +jobs: + coverage-report: + runs-on: ubuntu-latest + environment: mastodon + steps: + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}