From fc31c3f9dc465425903f4bc9563638559cd78052 Mon Sep 17 00:00:00 2001 From: Indivar Mishra Date: Thu, 25 Jan 2024 14:46:15 +0530 Subject: [PATCH] fix(#130): Install Poetry using github actions --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1585fde..ba926c3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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