Skip to content

Commit d1a92d8

Browse files
Add pre-commit CI (#147)
1 parent 42c0a4d commit d1a92d8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/lint.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Lint
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
env:
6+
FORCE_COLOR: 1
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
persist-credentials: false
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.x"
19+
- uses: tox-dev/action-pre-commit-uv@v1

0 commit comments

Comments
 (0)