Skip to content

Commit 661665c

Browse files
committed
add lint workflow using Ruff for code quality checks
1 parent 2f01998 commit 661665c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
ruff:
9+
name: Ruff
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Run Ruff
17+
uses: astral-sh/ruff-action@v3

0 commit comments

Comments
 (0)