-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
32 lines (32 loc) · 853 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: 'Rust Cargo integration'
description: 'Integration Rust Cargo with GitHub Actions'
author: qRoC
inputs:
command:
required: true
description: 'Cargo command like `build`, `check`, `test`, etc'
args:
required: false
description: 'Arguments for the cargo command'
manifest-path:
required: false
description: 'Path to the Cargo.toml. By default, is the working directory.'
token:
required: false
description: 'GitHub token. Used for enable more powerful annotation system.'
toolchain:
required: false
description: 'Toolchain to use. For example: `nightly`'
outputs:
notice_count:
description: 'notice count'
warning_count:
description: 'warning count'
failure_count:
description: 'failure count'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: circle
color: blue