mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 10:08:30 +00:00
34 lines
594 B
Makefile
34 lines
594 B
Makefile
set dotenv-load := true
|
|
set unstable := true
|
|
|
|
mod docs ".just/docs.just"
|
|
|
|
# List all available commands
|
|
[private]
|
|
default:
|
|
@just --list
|
|
|
|
[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 }}
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
# run pre-commit on all files
|
|
lint:
|
|
@just --fmt
|
|
@just nox lint
|
|
|
|
test *ARGS:
|
|
@just nox test {{ ARGS }}
|
|
|
|
testall *ARGS:
|
|
@just nox tests {{ ARGS }}
|