quivr/.github/workflows/backend-tests.yml

50 lines
1.3 KiB
YAML
Raw Normal View History

name: Backend Tests
on:
push:
branches: [ main ]
paths:
2023-07-17 09:57:27 +03:00
- 'backend/core/**'
pull_request:
branches: [ main ]
paths:
2023-07-17 09:57:27 +03:00
- 'backend/core/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
2023-07-17 09:57:27 +03:00
working-directory: ./backend/core
environment: preview
strategy:
matrix:
python-version: [ "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pyright
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
env:
2023-07-06 11:09:21 +03:00
SUPABASE_URL: ${{secrets.SUPABASE_URL}}
SUPABASE_SERVICE_KEY: ${{secrets.SUPABASE_SERVICE_KEY}}
OPENAI_API_KEY: ${{secrets.OPENAI_API_KEY}}
ANTHROPIC_API_KEY: ${{secrets.ANTHROPIC_API_KEY}}
JWT_SECRET_KEY: ${{secrets.JWT_SECRET_KEY}}
CI_TEST_API_KEY: ${{secrets.CI_TEST_API_KEY}}
run: |
2023-07-14 22:02:26 +03:00
python -m pytest tests/
- name: Static type checking with pyright
run: |
pyright