Skip to content

Commit

Permalink
Revert "Update codecov.yml"
Browse files Browse the repository at this point in the history
This reverts commit 65cc04f.
spirosmaggioros committed Feb 3, 2024
1 parent 825c206 commit af4fff6
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -6,11 +6,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: codecov/codecov-action@v4
- name: Checkout
uses: actions/checkout@v2
with:
fail_ci_if_error: true # optional (default = false)
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)
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

0 comments on commit af4fff6

Please sign in to comment.