There was an error while loading. Please reload this page.
1 parent 0240f08 commit eebe17fCopy full SHA for eebe17f
1 file changed
.github/workflows/pr-review.yml
@@ -0,0 +1,21 @@
1
+name: Pull Request Validation
2
+on:
3
+ pull_request:
4
+ branches: [main]
5
+ workflow_dispatch:
6
+permissions:
7
+ contents: read
8
+ pull-requests: write
9
+jobs:
10
+ validate:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: astral-sh/setup-uv@v6
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version-file: .python-version
18
+ - run: uv sync --group dev
19
+ - run: uv run ruff check .
20
+ - run: uv run pyright
21
+ - run: uv run pytest -q
0 commit comments