Skip to content

Commit cb94e29

Browse files
committed
Add a linting workflow
1 parent 9b5a4d4 commit cb94e29

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Lint 🕵 code ⚡
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
9+
lint:
10+
name: Ruff ⚡🕵
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
16+
- name: 📥 Checkout repo
17+
uses: actions/checkout@v4
18+
19+
- name: Run Ruff ⚡
20+
uses: astral-sh/ruff-action@v3
21+
with:
22+
args: check
23+
src: "./src"

0 commit comments

Comments
 (0)