Skip to content

Commit

Permalink
Update test-execution.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gahan9 authored Nov 7, 2024
1 parent b756688 commit da24af3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,24 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
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.0.1
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: View poetry --help
run: poetry --help
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install --upgrade pytest
python -m pip install --upgrade poetry
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
poetry install --with dev
Expand Down

0 comments on commit da24af3

Please sign in to comment.