From c3f2c59db1f681d3770425d5f43483901545ca78 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 27 Mar 2024 11:11:49 +1100 Subject: [PATCH] just: Add a command to check for API changes Add a command to run the `contrib/check-for-api-changes.sh` script. --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 2f060dd..fd8c17a 100644 --- a/justfile +++ b/justfile @@ -28,3 +28,7 @@ sane: lint # Make an attempt to catch feature gate problems in doctests cargo test --manifest-path Cargo.toml --doc --no-default-features > /dev/null || exit 1 + +# Check for API changes. +check-api: + ./contrib/check-for-api-changes.sh \ No newline at end of file