From 62ef47b8418ded2b1d310caa7c55df244c8fc549 Mon Sep 17 00:00:00 2001 From: ITOH Date: Fri, 21 May 2021 22:59:51 +0200 Subject: [PATCH] remove: coverage report --- .github/workflows/test.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c7baf4e3..424d77d6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,13 +17,14 @@ jobs: - name: Run test script for maintainers if: ${{ github.actor == 'Skillz4Killz' || github.actor == 'itohatweb' }} run: deno test --unstable --coverage=coverage -A tests/mod.ts - - name: Create coverage report - if: github.ref == 'refs/heads/main' - run: deno --unstable coverage --exclude=test ./coverage --lcov > coverage.lcov - - name: Collect and upload the coverage report - if: github.ref == 'refs/heads/main' - uses: codecov/codecov-action@v1.0.10 - with: - file: ./coverage.lcov + # TODO: add coverage back when it is stable + # - name: Create coverage report + # if: github.ref == 'refs/heads/main' + # run: deno --unstable coverage --exclude=test ./coverage --lcov > coverage.lcov + # - name: Collect and upload the coverage report + # if: github.ref == 'refs/heads/main' + # uses: codecov/codecov-action@v1.0.10 + # with: + # file: ./coverage.lcov env: DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}