We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6fbfe1 commit a685cf7Copy full SHA for a685cf7
.github/workflows/test.yml
@@ -49,3 +49,11 @@ jobs:
49
50
- name: Run unit tests
51
run: task go:test-unit
52
+
53
+ - name: Send unit tests coverage to Codecov
54
+ if: matrix.operating-system == 'ubuntu-latest'
55
+ uses: codecov/codecov-action@v1
56
+ with:
57
+ file: ./coverage_unit.txt
58
+ flags: unit
59
+ fail_ci_if_error: true
README.md
@@ -1,5 +1,7 @@
1
# arduino-check
2
3
+[![codecov-badge]](https://codecov.io/gh/arduino/arduino-lint)
4
5
`arduino-check` is a command line tool that automatically checks for common problems in your
6
[Arduino](https://www.arduino.cc/) projects:
7
0 commit comments