From 9fce18a41a666714e185765de83b9529105c72ed Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Fri, 22 Mar 2024 15:59:41 +0700 Subject: [PATCH] docs: remove description for supporting testing --- README.md | 5 ++--- action.yml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e920fdc..7e0c5da 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,11 @@ # CMake Action -Configure, build, and test your [CMake](https://cmake.org/) project using [GitHub Actions](https://github.com/features/actions). This action simplifies the workflow for configuring the build environment of a CMake project. It can also be optionally specified to build a CMake project using the `cmake --build` command and test it using the `ctest` command. +Configure and build your [CMake](https://cmake.org/) project using [GitHub Actions](https://github.com/features/actions). This action simplifies the workflow for configuring the build environment of a CMake project. It can also be optionally specified to build a CMake project using the `cmake --build` command. ## Features - Configures a CMake project using the [`cmake`](https://cmake.org/cmake/help/latest/manual/cmake.1.html) command. - Optionally builds a CMake project using the `cmake --build` command. -- Optionally tests a CMake project using the [`ctest`](https://cmake.org/cmake/help/latest/manual/ctest.1.html) command. - Auto-detects and installs required dependencies. - Supports specifying multiple CMake options directly from the action inputs. @@ -66,7 +65,7 @@ jobs: #### Configure and Build in the Same Step ```yaml -- name: Configure, Build, and Test Project +- name: Configure and Build Project uses: threeal/cmake-action@v1.3.0 with: run-build: true diff --git a/action.yml b/action.yml index ce00caf..af5277a 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: CMake Action -description: Configure, build, and test your CMake project +description: Configure and build your CMake project author: Alfi Maulana branding: color: gray-dark