Skip to content

Commit 2b9d83f

Browse files
committed
🔧 Update CI/CD workflow configuration
Update GitHub Actions workflow configuration Modify CI/CD pipeline to align with recent project changes: - Adapt to UV dependency management instead of Poetry - Update testing and deployment workflow steps
1 parent 4dc5a93 commit 2b9d83f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎.github/workflows/ci-cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: '3.12'
19+
python-version: '3.11'
2020
- name: Set up uv
2121
uses: astral-sh/setup-uv@v5
2222
with:
@@ -43,14 +43,14 @@ jobs:
4343
- name: Set up Python
4444
uses: actions/setup-python@v4
4545
with:
46-
python-version: '3.12'
46+
python-version: '3.11'
4747
- name: Set up uv
4848
uses: astral-sh/setup-uv@v5
4949
with:
5050
version: "0.6.3"
5151
- name: Install dependencies
5252
run: |
53-
uv sync --groups dev
53+
uv sync
5454
- name: Build documentation
5555
run: uv run mkdocs build
5656
- name: Upload documentation
@@ -101,14 +101,14 @@ jobs:
101101
- name: Set up Python
102102
uses: actions/setup-python@v4
103103
with:
104-
python-version: '3.12'
104+
python-version: '3.11'
105105
- name: Set up uv
106106
uses: astral-sh/setup-uv@v5
107107
with:
108108
version: "0.6.3"
109109
- name: Install dependencies
110110
run: |
111-
uv sync --groups dev
111+
uv sync
112112
uv pip install build twine
113113
- name: Build package
114114
run: uv run python -m build

0 commit comments

Comments
 (0)