Skip to content

Commit

Permalink
fix: poetry installed via pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtmurphy committed Jan 13, 2024
1 parent f69561d commit 9ecd0f1
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 9ecd0f1

Please sign in to comment.