We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b49841 commit cd5cee7Copy full SHA for cd5cee7
1 file changed
.github/workflows/regression.yml
@@ -59,7 +59,13 @@ jobs:
59
name: Check formatting
60
runs-on: ubuntu-latest
61
steps:
62
- - name: Whitespaces check
63
- uses: astral-sh/ruff-action@v3
64
- - run: ruff check --select W291
65
-
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Set up Python
+ uses: actions/setup-python@v5
66
+ with:
67
+ python-version: '3.13'
68
+ - name: Install Ruff
69
+ run: pip install ruff
70
+ - name: Run Ruff
71
+ run: ruff check .
0 commit comments