mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-07-07 20:55:02 +00:00
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
44 lines
805 B
Makefile
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 }}
|