django-language-server/Justfile
Josh Thomas c29b268326
Some checks are pending
lint / rustfmt (push) Waiting to run
lint / clippy (push) Waiting to run
lint / cargo-check (push) Waiting to run
lint / pre-commit (push) Waiting to run
release / build (push) Waiting to run
release / test (push) Waiting to run
release / release (push) Blocked by required conditions
test / generate-matrix (push) Waiting to run
test / Python , Django () (push) Blocked by required conditions
test / tests (push) Blocked by required conditions
zizmor 🌈 / zizmor latest via PyPI (push) Waiting to run
Integrate Salsa into document tracking for server (#148)
2025-05-15 01:35:49 -05:00

44 lines
805 B
Makefile

set dotenv-load := true
set unstable := true
mod dev ".just/devtools.just"
mod docs ".just/docs.just"
# List all available commands
[private]
default:
@just --list --list-submodules
[private]
cog:
uv run --with cogapp --with nox --no-project cog -r CONTRIBUTING.md README.md pyproject.toml
[private]
nox SESSION *ARGS:
uv run noxfile.py --session "{{ SESSION }}" -- "{{ ARGS }}"
bumpver *ARGS:
uv run --with bumpver bumpver {{ ARGS }}
check *ARGS:
cargo check {{ ARGS }}
clean:
cargo clean
clippy:
cargo clippy --all-targets --all-features --fix -- -D warnings
fmt *ARGS:
cargo +nightly fmt {{ ARGS }}
# run pre-commit on all files
lint:
@just --fmt
@just nox lint
test *ARGS:
@just nox test {{ ARGS }}
testall *ARGS:
@just nox tests {{ ARGS }}