Skip to content

Commit

Permalink
first install poetry binary before python setup in py-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kvchitrapu committed Apr 2, 2023
1 parent a6db174 commit 324064e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/basic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
python-version: '3.10.x'
cache: 'poetry'


- name: Install dependencies and cache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 324064e

Please sign in to comment.