Skip to content

Commit

Permalink
Integrate with codecov.
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Maj committed May 8, 2024
1 parent 3f5c1fb commit 18ef568
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/maintainers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ deno task test
To run the tests along with a coverage report:

```zsh
deno task coverage
deno task test:coverage
```

This command is also executed by GitHub Actions, the continuous integration service, for every Pull Request and branch.
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/deno-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Setup repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
Expand All @@ -31,9 +31,10 @@ jobs:
run: deno task test

- name: Generate CodeCov-friendly coverage report
run: deno task coverage
run: deno task generate-lcov

- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v3.1.0
uses: codecov/codecov-action@v4
with:
file: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 18ef568

Please sign in to comment.