Skip to content

Fix: README completo (estructura, wandb login, smoke test Docker, --r… #5

Fix: README completo (estructura, wandb login, smoke test Docker, --r…

Fix: README completo (estructura, wandb login, smoke test Docker, --r… #5

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest tests/ -v
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t pistachio-mlops .