(RHIZA) WEEKLY #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |