diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 347fbaea..7cfb90ee 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -22,6 +22,10 @@ jobs: run: | git config --global user.name github-actions[bot] git config --global user.email 'github-actions[bot]@users.noreply.github.com' + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} #- name: Configure for static lint checks # compiling first gives clang-tidy access to all the header files and settings used to compile the programs. # This will check for macros, if any, on linux and not for Windows. But the use of portability checks should diff --git a/README.md b/README.md index ac61c5e3..f4f0c708 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ AlgoPlus is a C++ library that includes ready to use complex Data Structures. [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/CSRT-NTUA/AlgoPlus) [![CodeQL CI](https://github.com/TheAlgorithms/C-Plus-Plus/actions/workflows/codeql.yml/badge.svg)](https://github.com/CSRT-NTUA/AlgoPlus/actions/workflows/codeql.yml) [![Awesome CI](https://github.com/CSRT-NTUA/AlgoPlus/workflows/Awesome%20CI%20Workflow/badge.svg)](https://github.com/CSRT-NTUA/AlgoPlus/actions?query=workflow%3A%22Awesome+CI+Workflow%22) - +[![codecov](https://codecov.io/gh/spirosmaggioros/AlgoPlus/graph/badge.svg?token=OQGIP2OTC7)](https://codecov.io/gh/spirosmaggioros/AlgoPlus) ### Example: ```cpp