From bfef74b8abbf55eb9df1222611910ede6e45ff32 Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Sat, 10 Apr 2021 15:27:43 +0200 Subject: [PATCH] remove coverage file --- .github/workflows/coverage.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index d7c4575c6..000000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Coverage - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: denolib/setup-deno@v2 - with: - deno-version: v1.8 - - name: Create coverage files - run: deno test --unstable --coverage=coverage --no-check -A ./tests/mod.ts # create coverage files - - name: Create coverage report - run: deno --unstable coverage ./coverage --lcov > coverage.lcov # create coverage report - - name: Collect coverage - uses: codecov/codecov-action@v1.0.10 # upload the report on Codecov - with: - file: ./coverage.lcov