Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for running tests on backend/core (#…
Browse files Browse the repository at this point in the history
…2822)

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
  • Loading branch information
StanGirard committed Jul 9, 2024
1 parent 82292f3 commit 1566040
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/backend-core-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
paths:
- 'backend/core/**'
workflow_dispatch:

jobs:
test:
Expand All @@ -19,9 +20,9 @@ jobs:
- 9998:9998
options: >-
--health-cmd="curl --fail http://localhost:9998/tika"
--health-interval=10s
--health-timeout=5s
--health-retries=5
--health-interval=30s
--health-timeout=10s
--health-retries=10
steps:
- name: Checkout code
Expand Down
2 changes: 2 additions & 0 deletions backend/core/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# quivr-core package

The RAG of Quivr.com

```
poetry install -E base
```
Expand Down

0 comments on commit 1566040

Please sign in to comment.