Skip to content

Commit

Permalink
build: collect and upload code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervonb committed Feb 28, 2021
1 parent f285c79 commit f55e3a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
run: deno upgrade --canary

- name: Test
run: deno test --unstable --allow-all
run: |
deno test --coverage=./cov --unstable --allow-all
deno coverage --lcov ./cov > cov.lcov
bash <(curl -s https://codecov.io/bash) -t secrets.CODECOV_TOKEN
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f55e3a4

Please sign in to comment.