Skip to content

Commit

Permalink
Fixed version error
Browse files Browse the repository at this point in the history
  • Loading branch information
slincoln-aiq committed Oct 10, 2024
1 parent 3e643af commit 9c17181
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Poetry
run: pipx install poetry
- name: Configure Poetry
run: |
poetry env use ${{ matrix.python-version }}
poetry --version
poetry env info
- name: Install dependencies
run: poetry install --with dev,llm
- name: Run tests
Expand Down

0 comments on commit 9c17181

Please sign in to comment.