* CI: pre-push hook (fmt, clippy -D warnings, test, release build) plus opt-in FJ_E2E=1 smoke. Install via scripts/install-hooks.sh. * Repo auto-detection from git remote: -R/--repo becomes optional on all repo-scoped subcommands. Detection prefers `upstream` then `origin`, honors --host, and parses https/ssh/scp-style URLs. * `--web` flag wired to every list/view command (open in default browser). * `$EDITOR` integration for issue/pr create + comment + edit (omit `--body` to launch your editor; `-` keeps stdin). * PR: new `diff`, `commits`, `files`, `checks`, `ready`, `review`, `edit`, `status`, `reopen` subcommands. `view --comments` now shows reviews too. * Issue: `edit` and `develop` (creates a branch for the issue). * Repo: `fork`, `sync`, `edit`, `rename`, `archive`, `unarchive`, `delete` (with slug-confirmation), `branches`, `topics`. * `fj api` gains `-H` headers, `--paginate` (follows Link rel=next), `--include` (response headers), `--silent`. The jq-ish projector now supports `[N]`/`[-N]` brackets and `|` pipes. * MSRV bumped to 1.82 (uses `is_none_or`). * 46 unit tests covering pure logic: hosts CRUD, remote URL parsing, link header parser, jq projection, branch label fallback, slugify. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
904 B
Bash
Executable file
38 lines
904 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# fj pre-push hook — local CI gate.
|
|
# Runs fmt-check, clippy, tests, and a release build. With FJ_E2E=1 also
|
|
# runs the live-API smoke suite against the currently signed-in host.
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
|
|
# Allow skip in genuine emergencies. Don't use this unless you know why.
|
|
if [[ "${FJ_SKIP_PREPUSH:-0}" = "1" ]]; then
|
|
echo "fj pre-push: skipped (FJ_SKIP_PREPUSH=1)"
|
|
exit 0
|
|
fi
|
|
|
|
step() {
|
|
printf '\n\033[1;34m== %s ==\033[0m\n' "$*"
|
|
}
|
|
|
|
step "cargo fmt --check"
|
|
cargo fmt --all -- --check
|
|
|
|
step "cargo clippy (deny warnings)"
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
step "cargo test"
|
|
cargo test --all --locked
|
|
|
|
step "cargo build --release"
|
|
cargo build --release --locked
|
|
|
|
if [[ "${FJ_E2E:-0}" = "1" ]]; then
|
|
step "E2E smoke (live API)"
|
|
./scripts/e2e-smoke.sh
|
|
fi
|
|
|
|
printf '\n\033[1;32m✓ pre-push checks passed\033[0m\n'
|