feat: add generative ai powered knowledge discovery #11
Workflow file for this run
This file contains 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: Build/Test RAG Engine | |
on: | |
push: | |
paths: | |
- "nesis/rag/core/**" | |
- "nesis/rag/tests/**" | |
- "nesis/rag/core/requirements*" | |
pull_request: | |
paths: | |
- "nesis/rag/core/**" | |
- "nesis/rag/tests/**" | |
- "nesis/rag/core/requirements*" | |
jobs: | |
check-code-quality: | |
runs-on: ubuntu-latest | |
name: Check code Quality | |
steps: | |
- name: Check out source | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 |