From 38a05924280d848a8a65e7a670177fbb9ca502ed Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Mon, 23 Jan 2023 14:54:21 +0700 Subject: [PATCH] add a new feature section in the `README.md` --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index c95538e..13bbb8e 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,13 @@ This action will configure a build environment for your project using the `cmake then it will build your project by running a `cmake --build` command, and last it could test your project using the `ctest` command. +## Features + +- Configure and build a project using the [cmake](https://cmake.org/cmake/help/latest/manual/cmake.1.html) command. +- Optionally test a project using the [ctest](https://cmake.org/cmake/help/latest/manual/ctest.1.html) command. +- Auto-detect and install required dependencies. +- Specify multiple CMake options directly from the Action inputs. + ## Usage For more information, see [action.yml](./action.yml) and [GitHub Actions guide](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions).