From 9ecd0f1199595d486762f7f773f06112d4bb8cc2 Mon Sep 17 00:00:00 2001 From: mwtmurphy Date: Sat, 13 Jan 2024 00:37:12 +0000 Subject: [PATCH] fix: poetry installed via pip --- .github/workflows/test_build.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index cf17bef..876fb51 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -11,18 +11,23 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - name: Create test repo + - name: Set up python==3.10 + uses: actions/setup-python@v1 + with: + python-version: '3.10' + architecture: x64 + + - name: Install dependencies run: | + pip install --upgrade pip pip install cookiecutter - cookiecutter --no-input . + pip install poetry - - name: Install Poetry + - name: Create test repo run: | - curl -sSL https://install.python-poetry.org | python3 - - source $HOME/.poetry/env - shell: bash + cookiecutter --no-input . - name: Run test repo shortcuts run: |