Skip to content

(RHIZA) WEEKLY

(RHIZA) WEEKLY #4

Workflow file for this run

# This file is part of the jebel-quant/rhiza repository
# (https://github.com/jebel-quant/rhiza).
#
# Workflow: Weekly
#
# Purpose: Runs checks that are too slow or noisy for every push:
# dep-compat-test — resolves dependencies fresh (ignoring the lockfile) and
# runs the full test suite to catch newly-released packages
# that break compatibility before Renovate picks them up.
# link-check — verifies all hyperlinks in README.md are reachable.
#
# Trigger: Weekly schedule (Monday 08:00 UTC) and manual dispatch.
name: "(RHIZA) WEEKLY"
permissions:
contents: read
on:
#push:
# branches: [main]
# paths: [README.md]
#pull_request:
# paths: [README.md]
schedule:
- cron: "0 8 * * 1" # Every Monday at 08:00 UTC
workflow_dispatch:
jobs:
weekly:
uses: jebel-quant/rhiza/.github/workflows/rhiza_weekly.yml@v0.19.1
secrets: inherit