Skip to content

build(deps): bump llama-index-embeddings-openai from 0.2.0 to 0.6.0 #46

build(deps): bump llama-index-embeddings-openai from 0.2.0 to 0.6.0

build(deps): bump llama-index-embeddings-openai from 0.2.0 to 0.6.0 #46

Workflow file for this run

name: CI Build & Verification
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Build Tools & Dependencies
run: |
python -m pip install --upgrade pip build setuptools wheel pytest
pip install -e .
- name: Verify Code Compilation
run: |
python -m py_compile owlbearag/*.py
- name: Build Wheel & Source Distribution
run: |
python -m build
- name: Upload Build Artifacts
uses: actions/upload-artifact@v7
with:
name: dist-python-${{ matrix.python-version }}
path: dist/