Translations update from Hosted Weblate #2522
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ruff | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
env: | |
DEFAULT_PYTHON: "3.11" | |
jobs: | |
ruff: | |
name: Ruff | |
runs-on: ubuntu-latest | |
steps: | |
- name: β€΅οΈ Check out code from GitHub | |
uses: actions/checkout@v4.1.7 | |
- name: π Set up rye | |
uses: eifinger/setup-rye@v4.2.3 | |
with: | |
enable-cache: true | |
- name: ποΈ Enable uv in rye | |
run: rye config --set-bool behavior.use-uv=true | |
- name: π Sync dependencies | |
run: rye sync | |
- name: π Run ruff linter | |
run: rye run ruff check . | |
- name: π Run ruff formatter | |
run: rye run ruff format --check . |