From 324064e4309f116179bb4b75484cd65211361468 Mon Sep 17 00:00:00 2001 From: Kishore Chitrapu Date: Sun, 2 Apr 2023 10:52:48 -0400 Subject: [PATCH] first install poetry binary before python setup in py-tests --- .github/workflows/basic-tests.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/basic-tests.yml b/.github/workflows/basic-tests.yml index 414e4e1f..62df4a43 100644 --- a/.github/workflows/basic-tests.yml +++ b/.github/workflows/basic-tests.yml @@ -33,7 +33,6 @@ jobs: python-version: '3.10.x' cache: 'poetry' - - name: Install dependencies and cache uses: actions/cache@v2 with: @@ -68,16 +67,16 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install Poetry + run: | + python -m pip install poetry==1.4.1 + - name: Install Python3 uses: actions/setup-python@v4 with: python-version: '3.10.x' - cache: 'pip' + cache: 'poetry' - - name: Install Poetry - run: | - python -m pip install poetry==1.4.1 - - name: Install dependencies and cache uses: actions/cache@v2 with: