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: