teslatte/justfile

27 lines
686 B
Makefile
Raw Normal View History

2023-08-29 12:18:07 +10:00
all_tests: no_token_test token_tests
no_token_test:
cargo clippy --all-targets -- -D warnings
cargo clippy --all-targets --all-features -- -D warnings
cargo test
# These tests require an access token saved in a file called "cli.json"
token_tests:
cargo run -- api vehicles
2023-08-29 13:55:02 +10:00
cargo run --no-default-features --features cli -- api vehicles
cargo run -- api products
2023-08-30 15:54:22 +10:00
publish version:
git diff-index --quiet HEAD
2023-08-30 15:54:22 +10:00
# BSD sed
sed -i '' "s/^version = \".*\"$/version = \"{{version}}\"/" Cargo.toml
2023-08-30 15:54:22 +10:00
git add Cargo.toml
git commit -m "chore: v{{version}}"
git tag "v{{version}}"
git push origin "v{{version}}"
2023-08-30 15:57:57 +10:00
git push
cargo publish