V3 docs and cleanup #4367
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI | |
on: | |
push: | |
branches: | |
- "**/main" # match branches like feature/main | |
- "main" # match the main branch | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: | |
- "**/main" | |
- "main" | |
paths-ignore: | |
- "**/*.md" | |
- ".semversioner/**" | |
permissions: | |
contents: read | |
pull-requests: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
# Only run the for the latest commit | |
cancel-in-progress: true | |
jobs: | |
python-ci: | |
# skip draft PRs | |
if: github.event.pull_request.draft == false | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] # add 3.12 once gensim supports it. TODO: watch this issue - https://github.com/piskvorky/gensim/issues/3510 | |
os: [ubuntu-latest, windows-latest] | |
fail-fast: false # Continue running all jobs even if one fails | |
env: | |
DEBUG: 1 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
python: | |
- 'graphrag/**/*' | |
- 'uv.lock' | |
- 'pyproject.toml' | |
- '**/*.py' | |
- '**/*.toml' | |
- '**/*.ipynb' | |
- '.github/workflows/python*.yml' | |
- 'tests/**/*' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
- name: Install dependencies | |
shell: bash | |
run: | | |
uv sync | |
uv pip install gensim | |
- name: Check | |
run: | | |
uv run poe check | |
- name: Build | |
run: | | |
uv build | |
- name: Unit Test | |
run: | | |
uv run poe test_unit | |
- name: Verb Test | |
run: | | |
uv run poe test_verbs |