mirror of
https://github.com/actions-rs/cargo.git
synced 2025-09-04 23:31:56 +03:00
Initial commit
This commit is contained in:
commit
7562f78615
13 changed files with 5459 additions and 0 deletions
23
action.yml
Normal file
23
action.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: 'cargo'
|
||||
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
|
||||
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
Loading…
Add table
Add a link
Reference in a new issue