mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-03 17:00:33 +00:00
fix noxfile calls
This commit is contained in:
parent
f83e37a557
commit
ee3774d0ef
3 changed files with 4 additions and 4 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
- name: Run pre-commit
|
||||
run: |
|
||||
SKIP=no-commit-to-branch \
|
||||
uv run noxfile.py --session lint
|
||||
uv run nox --session lint
|
||||
|
||||
rustfmt:
|
||||
runs-on: ubuntu-24.04
|
||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
env:
|
||||
OS: ${{ inputs.os }}
|
||||
run: |
|
||||
uv run noxfile.py --session gha_matrix -- "${OS}"
|
||||
uv run nox --session gha_matrix -- "${OS}"
|
||||
|
||||
test:
|
||||
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} (${{ matrix.os }})
|
||||
|
@ -77,7 +77,7 @@ jobs:
|
|||
DJANGO_VERSION: ${{ matrix.django-version }}
|
||||
PYTHON_VERSION: ${{ matrix.python-version }}
|
||||
run: |
|
||||
uv run noxfile.py --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
|
||||
uv run nox --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
|
||||
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
2
Justfile
2
Justfile
|
@ -15,7 +15,7 @@ cog:
|
|||
|
||||
[private]
|
||||
nox SESSION *ARGS:
|
||||
uv run noxfile.py --session "{{ SESSION }}" -- "{{ ARGS }}"
|
||||
uv run nox --session "{{ SESSION }}" -- "{{ ARGS }}"
|
||||
|
||||
bumpver *ARGS:
|
||||
uv run --with bumpver bumpver {{ ARGS }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue