refactor: remove required: false in the action inputs (#227)

This commit is contained in:
Alfi Maulana 2024-03-06 10:44:43 +07:00 committed by GitHub
parent 30c1178974
commit 904208a103
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,45 +7,32 @@ branding:
inputs: inputs:
source-dir: source-dir:
description: The source directory of the CMake project description: The source directory of the CMake project
required: false
build-dir: build-dir:
description: The build directory of the CMake project description: The build directory of the CMake project
required: false
generator: generator:
description: The build system generator for the CMake project description: The build system generator for the CMake project
required: false
c-compiler: c-compiler:
description: The preferred executable for compiling C language files description: The preferred executable for compiling C language files
required: false
cxx-compiler: cxx-compiler:
description: The preferred executable for compiling C++ language files description: The preferred executable for compiling C++ language files
required: false
c-flags: c-flags:
description: Additional flags to pass when compiling C language files description: Additional flags to pass when compiling C language files
required: false
cxx-flags: cxx-flags:
description: Additional flags to pass when compiling C++ language files description: Additional flags to pass when compiling C++ language files
required: false
options: options:
description: Additional options to pass during the CMake configuration description: Additional options to pass during the CMake configuration
required: false
args: args:
description: Additional arguments to pass during the CMake configuration description: Additional arguments to pass during the CMake configuration
required: false
run-build: run-build:
description: If enabled, it builds the project using CMake (true/false) description: If enabled, it builds the project using CMake (true/false)
required: false
default: false default: false
build-args: build-args:
description: Additional arguments to pass during the CMake build description: Additional arguments to pass during the CMake build
required: false
run-test: run-test:
description: If enabled, it runs testing using CTest (true/false) description: If enabled, it runs testing using CTest (true/false)
required: false
default: false default: false
test-args: test-args:
description: Additional arguments to pass during the CTest run description: Additional arguments to pass during the CTest run
required: false
outputs: outputs:
build-dir: build-dir:
description: The build directory of the CMake project description: The build directory of the CMake project