Skip to content

Daily E2E Tests

Daily E2E Tests #7

Workflow file for this run

name: Daily E2E Tests
on:
schedule:
- cron: '0 0 * * *' # Run daily at midnight UTC
workflow_dispatch: # Allow manual triggers
env:
PYTHON_VERSION: "3.10"
jobs:
daily_e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install jq
run: |
sudo apt-get install jq -y
- name: Install latest crx-analyzer from GHCR
run: |
pip install crx-analyzer
- name: Run E2E tests
continue-on-error: true
run: |
uv run pytest -v -m e2e test/test_cli_nightly.py