Skip to content

Commit cd5cee7

Browse files
Set up ruff
1 parent 9b49841 commit cd5cee7

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/regression.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,13 @@ jobs:
5959
name: Check formatting
6060
runs-on: ubuntu-latest
6161
steps:
62-
- name: Whitespaces check
63-
uses: astral-sh/ruff-action@v3
64-
- run: ruff check --select W291
65-
62+
- name: Checkout code
63+
uses: actions/checkout@v4
64+
- name: Set up Python
65+
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

Comments
 (0)