From ccadf4d28c0c3fb5e9960ca2437786cadb8ad57e Mon Sep 17 00:00:00 2001 From: Bryan Jenks Date: Mon, 8 May 2023 17:35:24 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=EF=B8=8F=20TEST:=20change=20way=20?= =?UTF-8?q?poetry=20is=20installed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-and-build.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 47a7804..c65033e 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -21,10 +21,15 @@ jobs: - name: Update pip run: python -m pip install --upgrade pip - - name: Setup Poetry - uses: abatilo/actions-poetry@v2.1.4 - with: - poetry-version: 1.1.6 + - name: Install Poetry + run: | + curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - + export PATH=$HOME/.poetry/bin:$PATH + + # - name: Setup Poetry + # uses: abatilo/actions-poetry@v2.1.4 + # with: + # poetry-version: 1.1.6 - name: Install dependencies run: |