Skip to content

Commit

Permalink
Fix uc calls
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jul 19, 2024
1 parent 1ebcb04 commit ca27318
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.1/requirements/uv.txt
- name: Install Pygments
run: |
uv venv --system
uv pip install .
uv --no-progress venv --system
uv --no-progress pip install .
- name: Generate Pygments styles
run: |
for STYLE in $( uv --no-progress run -- pygmentize -L styles | grep -E '^\* .*\:$' | cut -d ' ' -f 2 | cut -d ':' -f 1 );

Check failure on line 34 in .github/workflows/autofix.yaml

View workflow job for this annotation

GitHub Actions / lint / lint-yaml

34:121 [line-length] line too long (131 > 120 characters)
Expand Down Expand Up @@ -92,11 +92,11 @@ jobs:
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.1/requirements/uv.txt
- name: Install djlint
run: |
uv venv --system
uv pip install ".[test]"
uv --no-progress venv --system
uv --no-progress pip install ".[test]"
- name: Autofix Jinja
run: >
uv --no-progress run -- djlint
uv --no-progress run -- djlint
--reformat
--profile jinja
--format-css
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.1/requirements/uv.txt
- name: Install djlint
run: |
uv venv --system
uv pip install ".[test]"
uv --no-progress venv --system
uv --no-progress pip install ".[test]"
- name: Autofix Jinja
run: >
uv --no-progress run -- djlint --lint --profile jinja plumage/templates/*.html
Expand Down

0 comments on commit ca27318

Please sign in to comment.