2022-07-21 01:19:33 +02:00
|
|
|
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:
|
2022-09-28 21:16:55 +02:00
|
|
|
icon: 'check-circle'
|
2022-08-10 07:28:06 +02:00
|
|
|
color: 'green'
|
2022-07-21 01:19:33 +02:00
|
|
|
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.'
|
2022-07-21 01:19:33 +02:00
|
|
|
required: false
|
|
|
|
default: ''
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Install rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-09-28 21:16:55 +02:00
|
|
|
toolchain: stable
|
2022-07-21 01:19:33 +02:00
|
|
|
profile: minimal
|
2023-01-03 20:17:02 +01:00
|
|
|
- name: Check for semver violations
|
2022-07-21 01:57:47 +02:00
|
|
|
shell: bash
|
2022-07-21 01:41:14 +02:00
|
|
|
run: |
|
2022-07-21 02:08:54 +02:00
|
|
|
set -euxo pipefail
|
|
|
|
|
2022-07-21 01:41:14 +02:00
|
|
|
# Colorize output, since GitHub Actions terminals support color.
|
|
|
|
export CARGO_TERM_COLOR=always
|
2022-07-21 01:19:33 +02:00
|
|
|
|
2023-01-03 20:17:02 +01:00
|
|
|
# If crate to check is specified, pass it to cargo-semver-checks,
|
|
|
|
# otherwise use `--workspace` option.
|
|
|
|
if [[ "${{ inputs.crate-name }}" == '' ]]; then
|
|
|
|
export PACKAGE_OPTION="--workspace"
|
2022-08-07 18:23:51 +02:00
|
|
|
else
|
2023-01-03 20:17:02 +01:00
|
|
|
export PACKAGE_OPTION="--package ${{ inputs.crate-name }}"
|
2022-07-21 01:41:14 +02:00
|
|
|
fi
|
2022-07-21 01:19:33 +02:00
|
|
|
|
2022-07-21 01:41:14 +02:00
|
|
|
# Check for semver violations.
|
2022-11-16 02:15:26 +01:00
|
|
|
cargo install cargo-semver-checks --locked
|
2023-01-03 20:17:02 +01:00
|
|
|
cargo semver-checks check-release $PACKAGE_OPTION
|