mirror of https://github.com/aminya/setup-cpp
feat: add the action config
This commit is contained in:
parent
fc6fb32405
commit
7a3e19fee0
|
@ -1,6 +1,6 @@
|
|||
# setup-cpp
|
||||
|
||||
Install all the tools required for building and testing C++ projects.
|
||||
Install all the tools required for building and testing C++/C projects.
|
||||
|
||||
The last setup-cpp action that you need.
|
||||
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
name: "Setup Cpp"
|
||||
description: "Install all the tools required for building and testing C++/C projects."
|
||||
author: "Amin Yahyaabadi"
|
||||
|
||||
inputs:
|
||||
compiler:
|
||||
description: "The compiler and its version."
|
||||
required: false
|
||||
cmake:
|
||||
description: "The cmake version to install."
|
||||
required: false
|
||||
ninja:
|
||||
description: "The ninja version to install."
|
||||
required: false
|
||||
|
||||
runs:
|
||||
using: "node12"
|
||||
main: "dist/index.js"
|
||||
|
||||
branding:
|
||||
icon: 'award'
|
||||
color: 'blue'
|
|
@ -2,7 +2,7 @@
|
|||
"name": "setup-cpp",
|
||||
"version": "0.1.0",
|
||||
"author": "Amin Yahyaabadi",
|
||||
"description": "Install all the tools required for building and testing C++ projects.",
|
||||
"description": "Install all the tools required for building and testing C++/C projects.",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"license": "Apache-2.0",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue