Codecov Clojure example
Add to your workflows file.
- name: Upload to Codecov (Action)
uses: codecov/codecov-action@v2
with:
token: {{ token }}
or
- name: Upload to Codecov (Uploader)
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t {{ token }}
Add to your
project.clj
:plugins [[lein-cloverage "1.1.1"]]
CLOVERAGE_VERSION=1.1.1 lein cloverage --codecov
This uses cloverage with the @dlobue's codecov.io reporter.
- More documentation at https://docs.codecov.io
- Configure codecov through the
codecov.yml
https://docs.codecov.io/docs/codecov-yaml
MIT.
Originally authored by Jakub Elżbieciak.
We are happy to help if you have any questions. Please contact email our Support at [email protected]