Feat/jwt with public key signatures #374
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: Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
backend: | |
name: backend tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./fai-rag-app/fai-backend | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: install poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.8.2" | |
# create a local environment to use for GitHub Actions caching | |
- name: setup poetry | |
run: | | |
poetry config virtualenvs.create true --local | |
poetry config virtualenvs.in-project true --local | |
- name: cache | |
uses: actions/cache@v3 | |
with: | |
path: ./fai-rag-app/fai-backend/.venv | |
key: venv-${{ hashFiles('fai-rag-app/fai-backend/poetry.lock') }} | |
- name: install dependencies | |
run: | | |
sudo apt-get install -y --no-install-recommends \ | |
poppler-utils \ | |
tesseract-ocr | |
poetry lock --no-update | |
poetry install | |
- name: Run tests | |
env: | |
PUBLIC_KEY: "" | |
run: poetry run pytest -s -vv |