mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-06 10:20:36 +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
|
- name: Run pre-commit
|
||||||
run: |
|
run: |
|
||||||
SKIP=no-commit-to-branch \
|
SKIP=no-commit-to-branch \
|
||||||
uv run noxfile.py --session lint
|
uv run nox --session lint
|
||||||
|
|
||||||
rustfmt:
|
rustfmt:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
OS: ${{ inputs.os }}
|
OS: ${{ inputs.os }}
|
||||||
run: |
|
run: |
|
||||||
uv run noxfile.py --session gha_matrix -- "${OS}"
|
uv run nox --session gha_matrix -- "${OS}"
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} (${{ matrix.os }})
|
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} (${{ matrix.os }})
|
||||||
|
@ -77,7 +77,7 @@ jobs:
|
||||||
DJANGO_VERSION: ${{ matrix.django-version }}
|
DJANGO_VERSION: ${{ matrix.django-version }}
|
||||||
PYTHON_VERSION: ${{ matrix.python-version }}
|
PYTHON_VERSION: ${{ matrix.python-version }}
|
||||||
run: |
|
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:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
2
Justfile
2
Justfile
|
@ -15,7 +15,7 @@ cog:
|
||||||
|
|
||||||
[private]
|
[private]
|
||||||
nox SESSION *ARGS:
|
nox SESSION *ARGS:
|
||||||
uv run noxfile.py --session "{{ SESSION }}" -- "{{ ARGS }}"
|
uv run nox --session "{{ SESSION }}" -- "{{ ARGS }}"
|
||||||
|
|
||||||
bumpver *ARGS:
|
bumpver *ARGS:
|
||||||
uv run --with bumpver bumpver {{ ARGS }}
|
uv run --with bumpver bumpver {{ ARGS }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue