mirror of
https://github.com/cdtools-developers/cdtools.git
synced 2026-09-11 14:02:38 +02:00
fix: add virtual environment creation step in CI github workflows
This commit is contained in:
@@ -25,6 +25,11 @@ jobs:
|
||||
- name: Install uv
|
||||
run: |
|
||||
pip install uv
|
||||
|
||||
- name: Create virtual environment
|
||||
run: |
|
||||
uv venv
|
||||
|
||||
- name: Install dependencies with uv
|
||||
run: |
|
||||
uv pip install ."[tests]"
|
||||
@@ -56,9 +61,14 @@ jobs:
|
||||
- name: Install uv
|
||||
run: |
|
||||
pip install uv
|
||||
|
||||
- name: Create virtual environment
|
||||
run: |
|
||||
uv venv
|
||||
|
||||
- name: Install dependencies with uv
|
||||
run: |
|
||||
uv pip install ."[docs]""
|
||||
uv pip install ."[docs]"
|
||||
|
||||
- name: Build docs
|
||||
working-directory: docs
|
||||
|
||||
@@ -22,6 +22,11 @@ jobs:
|
||||
- name: Install uv
|
||||
run: |
|
||||
pip install uv
|
||||
|
||||
- name : Create virtual environment
|
||||
run: |
|
||||
uv venv
|
||||
|
||||
- name: Install project with uv
|
||||
run: |
|
||||
uv pip install -e .
|
||||
|
||||
Reference in New Issue
Block a user