-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
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: ${{ 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 | ||
|