From eebe17ffc35c8829e406ae832450d49237ee02c5 Mon Sep 17 00:00:00 2001 From: ulises-jeremias Date: Thu, 16 Jul 2026 03:17:19 -0300 Subject: [PATCH] ci: PR validation aggregate workflow Closes #48 Co-authored-by: Cursor --- .github/workflows/pr-review.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pr-review.yml diff --git a/.github/workflows/pr-review.yml b/.github/workflows/pr-review.yml new file mode 100644 index 0000000..112ceec --- /dev/null +++ b/.github/workflows/pr-review.yml @@ -0,0 +1,21 @@ +name: Pull Request Validation +on: + pull_request: + branches: [main] + workflow_dispatch: +permissions: + contents: read + pull-requests: write +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: astral-sh/setup-uv@v6 + - uses: actions/setup-python@v5 + with: + python-version-file: .python-version + - run: uv sync --group dev + - run: uv run ruff check . + - run: uv run pyright + - run: uv run pytest -q