Skip to content

mvp coded to bare minimum of the app working #6

mvp coded to bare minimum of the app working

mvp coded to bare minimum of the app working #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
HF_API_KEY: ${{ secrets.HF_API_KEY }}
DB_URL: ${{ secrets.DB_URL }}
steps:
- uses: actions/checkout@v3
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest