Skip to content

Weekly Workflow

Weekly Workflow #53

Workflow file for this run

name: Weekly Workflow
on:
schedule:
- cron: '0 9 * * SUN'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 300
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --all-groups
- name: Run update script
run: uv run python update.py
timeout-minutes: 300