just: Add a command to check for API changes
Add a command to run the `contrib/check-for-api-changes.sh` script.
This commit is contained in:
parent
1e22d74270
commit
c3f2c59db1
4
justfile
4
justfile
|
@ -28,3 +28,7 @@ sane: lint
|
||||||
|
|
||||||
# Make an attempt to catch feature gate problems in doctests
|
# Make an attempt to catch feature gate problems in doctests
|
||||||
cargo test --manifest-path Cargo.toml --doc --no-default-features > /dev/null || exit 1
|
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
|
Loading…
Reference in New Issue