⬆️ Bump chromadb from 0.5.0 to 0.5.5 #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Install and Test Python Versions 🐍 | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["macos-14"] | |
python-version: ["3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 🛎️ Checkout repository | |
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: 📦 Create virtual environment | |
run: python3 -m venv .venv | |
- name: 🏗️ Activate virtual environment | |
run: source .venv/bin/activate | |
- name: ⚙️ Install packages | |
run: pip install -e . |