Skip to content

update poetry

update poetry #3

Workflow file for this run

name: Python Tests
on:
push:
branches:
# - main
- fix_poetry
jobs:
build:
# if: github.ref == 'refs/heads/fix_poetry'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3 # Updated to the latest version
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 # Updated to the latest version
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
cd adalflow
poetry config virtualenvs.create false
poetry install