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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
cache-dependency-glob: uv.lock

- name: Create virtual environment
run: uv venv

- name: Install project and development dependencies
run: uv pip install --python .venv/bin/python -e ".[dev]"
run: uv sync --frozen --extra dev

- name: Run file-hygiene hooks
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ jobs:
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
cache-dependency-glob: uv.lock

- name: Create virtual environment
run: uv venv

- name: Install project runtime dependencies
run: uv pip install --python .venv/bin/python -e .
run: uv sync --frozen

- name: Run live news E2E
run: .venv/bin/python scripts/verify_news_e2e.py
Expand All @@ -151,13 +151,13 @@ jobs:
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
cache-dependency-glob: uv.lock

- name: Create virtual environment
run: uv venv

- name: Install project runtime dependencies
run: uv pip install --python .venv/bin/python -e .
run: uv sync --frozen

- name: Check OpenAI credential
id: openai
Expand Down Expand Up @@ -195,13 +195,13 @@ jobs:
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
cache-dependency-glob: uv.lock

- name: Create virtual environment
run: uv venv

- name: Install project runtime dependencies
run: uv pip install --python .venv/bin/python -e .
run: uv sync --frozen

- name: Check OpenRouter credential
id: openrouter
Expand Down
Loading