Skip to content

feat(cron): add support for custom timezones #831

feat(cron): add support for custom timezones

feat(cron): add support for custom timezones #831

Workflow file for this run

name: Docket Chaos Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
chaos:
name: Chaos tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: 3.12
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Install dependencies
run: uv sync --dev
- name: Run chaos tests
run: uv run python -m chaos.driver
signals:
name: Signal handling tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: 3.12
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Install dependencies
run: uv sync --dev
- name: Run signal handling tests
run: uv run python -m chaos.signals