Translations update from Hosted Weblate #2632
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: Pylint | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
env: | |
DEFAULT_PYTHON: "3.11" | |
jobs: | |
pylint: | |
name: Pylint | |
runs-on: ubuntu-latest | |
steps: | |
- name: β€΅οΈ Check out code from GitHub | |
uses: actions/[email protected] | |
- name: π Set up rye | |
uses: eifinger/[email protected] | |
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 Pylint | |
run: rye run pylint custom_components/spook |