chore: add github actions#28
Merged
gheorghitahurmuz merged 2 commits intomainfrom Jun 13, 2025
Merged
Conversation
a4986bd to
f1988a6
Compare
6b3f1b0 to
6c822a4
Compare
6c822a4 to
512b56c
Compare
cristipufu
approved these changes
Jun 13, 2025
There was a problem hiding this comment.
Pull Request Overview
This PR adds GitHub Actions workflows for CI (commit lint, linting, testing), publishing packages, and docs, and includes small code cleanups—mainly adding # type: ignore to certain imports and refining environment-variable handling.
- Unified
UIPATH_URLlookup into a single line and added safe defaults when unpackinginput_json. - Added
# type: ignorecomments onAzureOpenAIandStepConfigimports. - Introduced GitHub Actions workflows: commit lint, lint, test, CI orchestration, publish, and publish-docs.
Reviewed Changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/uipath_llamaindex/llms/_openai_llms.py | Added # type: ignore to AzureOpenAI import; simplified base_url parsing |
| src/uipath_llamaindex/embeddings/_openai_embeddings.py | Same import/type-ignore and base_url rstrip consolidation |
| src/uipath_llamaindex/_cli/cli_run.py | Removed unused Any, Dict imports |
| src/uipath_llamaindex/_cli/cli_init.py | Refactored current_stop_event and step_config initialization |
| src/uipath_llamaindex/_cli/_runtime/_runtime.py | Added early returns for missing workflow/context; safe input_json unpacking |
| src/uipath_llamaindex/_cli/_runtime/_hitl.py | Guarded against api_resume being None before access |
| pyproject.toml | Excluded samples/.* from tooling |
| .github/workflows/test.yml | New test workflow; uses continue-on-error: true |
| .github/workflows/lint.yml | New lint workflow |
| .github/workflows/commitlint.yml | New commit-lint workflow |
| .github/workflows/ci.yml | CI orchestration combining commit-lint, lint, and test jobs |
| .github/workflows/publish.yml | Publish job now depends on lint and test |
| .github/workflows/publish-docs.yml | Publish Docs on main/docs changes |
Comments suppressed due to low confidence (1)
.github/workflows/test.yml:36
- Using
continue-on-error: truewill prevent test failures from failing the workflow. If the intent is to block merges on test failures, consider removing this or setting it tofalse.
continue-on-error: true
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.