Skip to content

Enhance NLU with comprehensive keyword detection and smart context an… #11

Enhance NLU with comprehensive keyword detection and smart context an…

Enhance NLU with comprehensive keyword detection and smart context an… #11

Workflow file for this run

name: Simple CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Create test database
run: python create_canonical_db.py
- name: Test basic functionality
run: python -c "from core.nlu import IntentParser; print('✅ Core modules working')"
build-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install frontend dependencies
working-directory: frontend/nextjs
run: npm install
- name: Build frontend
working-directory: frontend/nextjs
run: npm run build
env:
NEXT_PUBLIC_API_URL: http://localhost:8000