We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 709fe00 commit 9d5e060Copy full SHA for 9d5e060
.github/workflows/ci.yml
@@ -22,4 +22,8 @@ jobs:
22
- name: Install Flow CLI
23
run: bash -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
24
- name: Run tests
25
- run: flow test --cover --covercode="contracts" tests/test_*.cdc
+ run: flow test --cover --covercode="contracts" --coverprofile=coverage.lcov --tests/test_*.cdc
26
+ - name: Upload coverage reports to Codecov
27
+ uses: codecov/codecov-action@v3
28
+ env:
29
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
.gitignore
@@ -0,0 +1 @@
1
+coverage.lcov
0 commit comments