-
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make new test.yml for unit testing (#35)
Co-authored-by: jeffrey <[email protected]>
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Unit Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Upgrade pip | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Install gcc | ||
run: | | ||
sudo apt-get install gcc | ||
- name: Install AutoRAG | ||
run: | | ||
pip install -e . | ||
- name: Install dependencies | ||
run: | | ||
pip install pytest | ||
- name: Run tests | ||
run: | | ||
pytest tests/ | ||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |