diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 0b835423..00000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Run tests - -on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 2 - - name: Install dependencies - run: yarn install - - name: Run tests - run: yarn run test --coverage # generates coverage - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 - with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true - verbose: true