β¬οΈ Update dependency node to v22.12.0 (#871) #2610
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/[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 ruff linter | |
run: rye run ruff check . | |
- name: π Run ruff formatter | |
run: rye run ruff format --check . |