Skip to content

Commit 10fb106

Browse files
committed
feat: πŸš€ python3.13 support for poetry and library
Signed-off-by: Onuralp SEZER <[email protected]>
1 parent 9b35f8c commit 10fb106

File tree

3 files changed

+508
-172
lines changed

3 files changed

+508
-172
lines changed

β€Ž.github/workflows/poetry-test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: πŸ“ Poetry Check and Installation Test Workflow
2+
on:
3+
push:
4+
paths:
5+
- 'poetry.lock'
6+
- 'pyproject.toml'
7+
pull_request:
8+
paths:
9+
- 'poetry.lock'
10+
- 'pyproject.toml'
11+
workflow_dispatch:
12+
13+
jobs:
14+
ci:
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu-latest, windows-latest, macos-latest]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
20+
runs-on: ${{ matrix.os }}
21+
steps:
22+
- name: πŸ“₯ Checkout the repository
23+
uses: actions/checkout@v4
24+
25+
- name: πŸ“¦ Install the base dependencies
26+
run: python -m pip install --upgrade poetry
27+
28+
- name: 🐍 Set up Python ${{ matrix.python-version }}
29+
uses: actions/setup-python@v5
30+
with:
31+
python-version: ${{ matrix.python-version }}
32+
33+
- name: πŸ” Check the correctness of the project config
34+
run: python -m poetry check
35+
36+
- name: πŸš€ Do Install the package Test
37+
run: python -m poetry install

0 commit comments

Comments
Β (0)