Initial commit

This commit is contained in:
svartalf 2019-09-12 23:48:44 +03:00
commit 7562f78615
13 changed files with 5459 additions and 0 deletions

23
action.yml Normal file
View 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'