Skip to content

Commit

Permalink
make new test.yml for unit testing (#35)
Browse files Browse the repository at this point in the history
Co-authored-by: jeffrey <[email protected]>
  • Loading branch information
vkehfdl1 and jeffrey authored Jan 18, 2024
1 parent 4a877e7 commit 41968fe
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
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 }}

0 comments on commit 41968fe

Please sign in to comment.