Skip to content

Commit

Permalink
Update poetry test execution steps
Browse files Browse the repository at this point in the history
Update poetry test execution steps which causing to fail workflow
  • Loading branch information
gahan9 authored Nov 7, 2024
1 parent 959e482 commit b756688
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,18 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
poetry-version: ["latest"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v3
- uses: abatilo/actions-poetry@v3.0.1
with:
poetry-version: 1.4.0
poetry-version: ${{ matrix.poetry-version }}
- name: View poetry --help
run: poetry --help
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit b756688

Please sign in to comment.