Skip to content

Commit

Permalink
Add codecov coverage report uploading (#83)
Browse files Browse the repository at this point in the history
* split out generating lcov file vs showing coverage in the terminal

* Integrate with codecov.
  • Loading branch information
filmaj committed May 8, 2024
1 parent 64a3365 commit 90cd7f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 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 }}
3 changes: 2 additions & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
},
"tasks": {
"test": "deno fmt --check && deno lint && deno test --allow-read --allow-net --allow-write --allow-run --allow-env src",
"coverage": "rm -rf .coverage && deno test --reporter=dot --allow-read --allow-net --allow-write --allow-run --allow-env --coverage=.coverage src && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage && deno run --allow-read https://deno.land/x/code_coverage@0.2.0/cli.ts"
"generate-lcov": "rm -rf .coverage && deno test --reporter=dot --allow-read --allow-net --allow-write --allow-run --allow-env --coverage=.coverage src && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage",
"test:coverage":"deno task generate-lcov && deno coverage --exclude=fixtures --exclude=test .coverage"
},
"lock": false
}

0 comments on commit 90cd7f6

Please sign in to comment.