From b2d7bcbc7133af5a69cdb0d781ac00e53553284b Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 17 May 2020 20:12:52 +0200 Subject: [PATCH] Coverage file added --- .github/workflows/codacy-coverage-reporter.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/codacy-coverage-reporter.yml diff --git a/.github/workflows/codacy-coverage-reporter.yml b/.github/workflows/codacy-coverage-reporter.yml new file mode 100644 index 0000000000..21bb9b7a9a --- /dev/null +++ b/.github/workflows/codacy-coverage-reporter.yml @@ -0,0 +1,17 @@ +# This sends coverage reports to codacy +# +name: codacy-coverage-reporter + +on: ["push"] + +jobs: + codacy-coverage-reporter: + runs-on: ubuntu-latest + name: codacy-coverage-reporter + steps: + - uses: actions/checkout@master + - name: Run codacy-coverage-reporter + uses: codacy/codacy-coverage-reporter-action@master + with: + project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} + coverage-reports: coverage.xml