cargo-semver-checks/action.yml

22 lines
691 B
YAML
Raw Normal View History

name: 'cargo-semver-checks'
2022-07-21 01:34:12 +02:00
description: 'Ensure the public API in your Rust crate follows semantic versioning'
2022-08-10 07:28:06 +02:00
branding:
icon: 'check-circle'
2022-08-10 07:28:06 +02:00
color: 'green'
inputs:
crate-name:
2023-01-03 20:17:02 +01:00
description: 'The crate whose API to check for semver. If not set, all crates in the workspace are processed.'
required: false
default: ''
2023-01-03 20:39:25 +01:00
manifest-path:
description: 'Path to Cargo.toml of crate or workspace to check. Has an effect only if crate-name is not specified.'
required: false
default: ''
2023-01-03 20:49:57 +01:00
verbose:
description: 'Enables verbose output of `cargo-semver-checks`.'
type: boolean
required: true
default: false
runs:
2023-01-09 00:46:08 +01:00
using: 'node16'
main: 'dist/index.js'