From ea29e5a7781f4022bcbe354b7f78325a6b0a9e33 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Mon, 4 Mar 2024 21:56:53 +0700 Subject: [PATCH] refactor: remove `required: false` in the action inputs --- action.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/action.yaml b/action.yaml index ddef0c1..a4ea678 100644 --- a/action.yaml +++ b/action.yaml @@ -7,45 +7,32 @@ branding: inputs: source-dir: description: The source directory of the CMake project - required: false build-dir: description: The build directory of the CMake project - required: false generator: description: The build system generator for the CMake project - required: false c-compiler: description: The preferred executable for compiling C language files - required: false cxx-compiler: description: The preferred executable for compiling C++ language files - required: false c-flags: description: Additional flags to pass when compiling C language files - required: false cxx-flags: description: Additional flags to pass when compiling C++ language files - required: false options: description: Additional options to pass during the CMake configuration - required: false args: description: Additional arguments to pass during the CMake configuration - required: false run-build: description: If enabled, it builds the project using CMake (true/false) - required: false default: false build-args: description: Additional arguments to pass during the CMake build - required: false run-test: description: If enabled, it runs testing using CTest (true/false) - required: false default: false test-args: description: Additional arguments to pass during the CTest run - required: false outputs: build-dir: description: The build directory of the CMake project