mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-23 09:58:04 +00:00
11 lines
263 B
Makefile
11 lines
263 B
Makefile
# Run tests for the Lune library
|
|
test:
|
|
cargo test --package lune -- --test-threads 1
|
|
|
|
# Run tests for the Lune CLI
|
|
test-cli:
|
|
cargo test --package lune-cli
|
|
|
|
# Publish gitbook directory to gitbook branch
|
|
publish-gitbook:
|
|
npx push-dir --dir=docs --branch=gitbook
|