From cd4f15ffe574d66f1500da73265ba97f9f9e2bc2 Mon Sep 17 00:00:00 2001 From: Dmitri Zaitsev Date: Mon, 19 Aug 2024 20:21:03 +0700 Subject: [PATCH] del codecov workflow --- .github/workflows/codecov.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 4aa89d6..0000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Codecov -on: - push: - workflow_dispatch: -jobs: - coverage: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Install modules - run: | - npm i - npm test - - name: Generate coverage report - run: | - npx nyc report --reporter=text-lcov > coverage.lcov - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - files: ./coverage.lcov # optional - flags: unittests # optional - fail_ci_if_error: true # optional (default = false) - verbose: true # optional (default = false) -