Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: |
curl -sSL https://install.python-poetry.org | python
curl -sSL https://install.python-poetry.org | python - --version 1.8.5
poetry install
poetry run python -m pytest --disable-pytest-warnings
env:
Expand All @@ -62,7 +62,7 @@ jobs:
python-version: "3.x"
- name: Build
run: |
curl -sSL https://install.python-poetry.org | python
curl -sSL https://install.python-poetry.org | python - --version 1.8.5
poetry self add "poetry-dynamic-versioning[plugin]"
poetry install --only=dev --no-interaction
poetry build --format=wheel
Expand Down
Loading