Skip to content

Commit 517b7e4

Browse files
committed
fix (CI): fix syntax error CI
1 parent 0713980 commit 517b7e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Clone repository
22-
- uses: actions/checkout@v5
22+
uses: actions/checkout@v5
2323

2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v6
@@ -60,17 +60,17 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Clone repository
63-
- uses: actions/checkout@v5
63+
uses: actions/checkout@v5
6464

6565
- name: Set up Python 3.14
66-
- uses: actions/setup-python@v6
66+
uses: actions/setup-python@v6
6767
with:
6868
python-version: "3.14"
6969

7070
- name: Install Ruff
71-
- run: pip install ruff
71+
run: pip install ruff
7272

7373
- name: Run Ruff Linter
74-
- run: |
74+
run: |
7575
ruff check .
7676
ruff format --check .

0 commit comments

Comments
 (0)