Update poetry lock #2
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: 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 |