We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb469e commit deeafeeCopy full SHA for deeafee
1 file changed
.github/workflows/ci.yml
@@ -7,7 +7,15 @@ on:
7
branches: [develop, main]
8
9
jobs:
10
- hello:
+ lint:
11
+ name: Lint & Format
12
runs-on: ubuntu-latest
13
steps:
- - run: echo "hello"
14
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
15
+ - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8
16
+ - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
17
+ with:
18
+ python-version: "3.14"
19
+ - run: uv sync --frozen --extra dev
20
+ - run: uv run ruff check .
21
+ - run: uv run ruff format --check .
0 commit comments