Skip to content

build(deps): update scikit-learn requirement from >=1.4.1.post1 to >=1.9.0 in /backend #11

build(deps): update scikit-learn requirement from >=1.4.1.post1 to >=1.9.0 in /backend

build(deps): update scikit-learn requirement from >=1.4.1.post1 to >=1.9.0 in /backend #11

Workflow file for this run

name: MailPilot AI CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
backend-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run Pytest Test Suite
run: |
cd backend && pytest
frontend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install Frontend Dependencies & Build
run: |
cd frontend
npm ci
npm run build