Skip to content

Commit

Permalink
ci: move to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
rtgiskard committed Sep 17, 2024
1 parent dcd2fbe commit e14d44f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,24 @@ jobs:
- name: Python dependences
run: |
pipx install poetry pytest
poetry install
pipx install uv pytest
uv sync
- name: Check with linter and formatter
run: |
ruff check
yapf -d -r .
yapf -d -r -e .venv/ .
- name: Build hyprcursor
run: |
poetry run ./cursor_utils.py --hypr --log-level debug --out-dir out.hypr
uv run ./cursor_utils.py --hypr --log-level debug --out-dir out.hypr
cd out.hypr && for x in *; do \
tar -acf ../"${x}.hypr.tar.zst" "$x"; \
done
- name: Build Xcursor
run: |
poetry run ./cursor_utils.py --x11 --log-level debug --out-dir out.x11
uv run ./cursor_utils.py --x11 --log-level debug --out-dir out.x11
cd out.x11 && for x in *; do \
tar -acf ../"${x}.x11.tar.zst" "$x"; \
done
Expand Down

0 comments on commit e14d44f

Please sign in to comment.