Skip to content

Commit 4efeb81

Browse files
Merge pull request #107 from Create-Python-App/fix/48-pr-review
ci: PR validation aggregate workflow (#48)
2 parents 0240f08 + eebe17f commit 4efeb81

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/pr-review.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)