We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7186af2 commit cb4bc90Copy full SHA for cb4bc90
1 file changed
.github/workflows/coverage.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - eio
8
pull_request:
9
schedule:
10
# Prime the caches every Monday
@@ -30,6 +31,8 @@ jobs:
30
31
32
- name: Checkout code
33
uses: actions/checkout@v4
34
+ with:
35
+ fetch-depth: 0
36
37
- name: Use OCaml ${{ matrix.ocaml-compiler }}
38
uses: ocaml/setup-ocaml@v2
@@ -46,6 +49,7 @@ jobs:
46
49
run: opam exec -- dune runtest --instrument-with bisect_ppx
47
50
48
51
- name: Send coverage report to Codecov
- run: opam exec -- bisect-ppx-report send-to Codecov
52
+ run: opam exec -- bisect-ppx-report send-to Codecov --verbose
53
env:
54
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
55
PULL_REQUEST_NUMBER: ${{ github.event.number }}
0 commit comments