Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/test-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,24 @@
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
- uses: abatilo/actions-poetry@v2

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium test

score is 2: third-party GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io
Click Remediation section below for further remediation help
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
python -m pip install pytest
python -m pip install --upgrade pytest

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium test

score is 2: pipCommand not pinned by hash
Click Remediation section below to solve this issue
python -m pip install --upgrade poetry

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium test

score is 2: pipCommand not pinned by hash
Click Remediation section below to solve this issue
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