CI Additional #5
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
| name: CI Additional | |
| on: | |
| workflow_dispatch: # allows you to trigger manually | |
| schedule: | |
| - cron: "0 0 1 */3 *" # Run every 3 months | |
| jobs: | |
| min-version-policy: | |
| name: Minimum Version Policy | |
| runs-on: "ubuntu-latest" | |
| env: | |
| COLUMNS: 120 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: | | |
| uv run --with 'minimum-dependency-versions @ git+https://github.com/xarray-contrib/minimum-dependency-versions@v1.0.0' \ | |
| python -m minimum_versions validate \ | |
| --policy=.github/ci/policy.yaml \ | |
| --manifest-path=./pixi.toml \ | |
| pixi:test-minimum | |
| linkcheck: | |
| name: pixi run docs-linkcheck | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/checkout@v5 | |
| - uses: prefix-dev/setup-pixi@v0.9.0 | |
| - run: pixi run docs-linkcheck |