Skip to content

Commit d12f819

Browse files
committed
feat: add lint and style checks
1 parent ceacf78 commit d12f819

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: lint and style checks
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Clone repo
13+
uses: actions/checkout@v4
14+
15+
- name: Set up uv
16+
uses: astral-sh/setup-uv@v6
17+
18+
- name: Run pre-commit
19+
run: uvx pre-commit run --all-files

0 commit comments

Comments
 (0)