Skip to content

Commit

Permalink
install poetry without 3rd party github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart committed Mar 11, 2024
1 parent 787b321 commit 03e1b02
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/python-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,15 @@ jobs:
with:
python-version: 3.12.1

- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.2
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Cache the virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
# - name: Cache the virtualenv
# uses: actions/cache@v4
# with:
# path: ./.venv
# key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 03e1b02

Please sign in to comment.