Skip to content

Commit 3de11ed

Browse files
authored
Fix actions.yml
1 parent ff1fd69 commit 3de11ed

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

.github/workflows/actions.yml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -57,30 +57,28 @@ jobs:
5757
run: |
5858
uv pip install dist/*.tar.gz
5959
ruff-linting:
60-
runs-on: ubuntu-latest
61-
steps:
62-
- uses: actions/checkout@v4
63-
- uses: chartboost/ruff-action@v1
64-
with:
65-
args: "check ."
60+
runs-on: ubuntu-latest
61+
steps:
62+
- uses: actions/checkout@v4
63+
- uses: chartboost/ruff-action@v1
64+
with:
65+
args: "check ."
6666
ruff-formatting:
67-
runs-on: ubuntu-latest
68-
steps:
69-
- uses: actions/checkout@v4
70-
- uses: chartboost/ruff-action@v1
71-
with:
72-
args: "format . --check --verbose"
67+
runs-on: ubuntu-latest
68+
steps:
69+
- uses: actions/checkout@v4
70+
- uses: chartboost/ruff-action@v1
71+
with:
72+
args: "format . --check --verbose"
7373
pre-commit:
7474
name: Pre-commit (lint/format/policy/secrets)
7575
runs-on: ubuntu-latest
7676
steps:
7777
- uses: actions/checkout@v4
78-
7978
- name: Set up Python
80-
- uses: actions/setup-python@v5
79+
uses: actions/setup-python@v5
8180
with:
82-
python-version: "3.12"
83-
81+
python-version: 3.12
8482
- uses: pre-commit/[email protected]
8583
with:
8684
extra_args: --all-files

0 commit comments

Comments
 (0)