Skip to content

Commit

Permalink
fix(#130): Install Poetry using github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
indiVar0508 committed Jan 27, 2024
1 parent 819df60 commit fc31c3f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install Project
run: |
python -m pip install --upgrade pip
pip install --upgrade poetry
poetry install
poetry add 'sqlalchemy${{ matrix.sqla }}'
- name: install oracle dependencies
Expand Down

0 comments on commit fc31c3f

Please sign in to comment.