2019-09-15 11:45:45 +03:00
|
|
|
name: 'rust-cargo'
|
2019-09-12 23:48:44 +03:00
|
|
|
description: 'Run cargo command'
|
|
|
|
author: 'actions-rs team'
|
|
|
|
branding:
|
|
|
|
icon: play-circle
|
|
|
|
color: black
|
|
|
|
inputs:
|
|
|
|
command:
|
|
|
|
description: Cargo command to run (ex. `check` or `build`)
|
|
|
|
required: true
|
|
|
|
toolchain:
|
|
|
|
description: Toolchain to use (without the `+` sign, ex. `nightly`)
|
|
|
|
required: false
|
|
|
|
args:
|
|
|
|
description: Arguments for the cargo command
|
|
|
|
required: false
|
|
|
|
use-cross:
|
|
|
|
description: Use cross instead of cargo
|
|
|
|
default: false
|
2022-03-04 11:40:16 +02:00
|
|
|
outputs:
|
|
|
|
stdout:
|
|
|
|
description: Standard out of the program
|
|
|
|
stderr:
|
|
|
|
description: Standard err of the program
|
2019-09-12 23:48:44 +03:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|