Skip to content

chore: add Tailwind v4 build/watch npm scripts to package.json #324

chore: add Tailwind v4 build/watch npm scripts to package.json

chore: add Tailwind v4 build/watch npm scripts to package.json #324

Workflow file for this run

name: Grace-AI CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# This installs EVERYTHING (FastAPI, Google GenAI, DB drivers, etc.)
pip install -r requirements.txt
# Install testing tools separately if they aren't in requirements.txt
pip install pytest pytest-asyncio httpx
- name: Proof of Success
run: echo "Poetry is officially dead. Long live requirements.txt"