From ab114c5408a8415b917b599a92544aae1b202246 Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Mon, 13 Apr 2020 17:59:53 +0200 Subject: [PATCH] add coverage info to readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 603ea49..b038d2c 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ This template is a collection from learnings of previous projects and should all - Modern CMake practices - Suited for single header libraries and larger projects - Integrated test suite -- Continuous integration via GitHub Workflows -- Code coverage via codecov -- Code formatting enforced via [clang-format](https://clang.llvm.org/docs/ClangFormat.html) / [Format.cmake](https://github.com/TheLartians/Format.cmake) +- Continuous integration via [GitHub Actions](https://help.github.com/en/actions/) +- Code coverage via [codecov](https://codecov.io) +- Code formatting enforced by [clang-format](https://clang.llvm.org/docs/ClangFormat.html) via [Format.cmake](https://github.com/TheLartians/Format.cmake) - Reproducible dependency management via [CPM.cmake](https://github.com/TheLartians/CPM.cmake) ## Usage @@ -29,6 +29,7 @@ This template is a collection from learnings of previous projects and should all - Clone this repo and replace all occurrences of "Greeter" in the [CMakeLists.txt](CMakeLists.txt) with the name of your project - Replace the source files with your own - For single-header libraries: see the comments in [CMakeLists.txt](CMakeLists.txt) +- Replace the codecov token in the [ubuntu workflow](.github/workflows/ubuntu.yml) or remove the codecov step - Happy coding! ### Build and run test suite