Skip to content

Commit cb4bc90

Browse files
committed
Fix Codecov CI: add secret token
1 parent 7186af2 commit cb4bc90

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/coverage.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- eio
78
pull_request:
89
schedule:
910
# Prime the caches every Monday
@@ -30,6 +31,8 @@ jobs:
3031
3132
- name: Checkout code
3233
uses: actions/checkout@v4
34+
with:
35+
fetch-depth: 0
3336

3437
- name: Use OCaml ${{ matrix.ocaml-compiler }}
3538
uses: ocaml/setup-ocaml@v2
@@ -46,6 +49,7 @@ jobs:
4649
run: opam exec -- dune runtest --instrument-with bisect_ppx
4750

4851
- name: Send coverage report to Codecov
49-
run: opam exec -- bisect-ppx-report send-to Codecov
52+
run: opam exec -- bisect-ppx-report send-to Codecov --verbose
5053
env:
54+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5155
PULL_REQUEST_NUMBER: ${{ github.event.number }}

0 commit comments

Comments
 (0)