https://github.com/xarray-contrib/minimum-dependency-versions
Automated minimum dependency policy checks
https://github.com/xarray-contrib/minimum-dependency-versions
Last synced: 2 months ago
JSON representation
Automated minimum dependency policy checks
- Host: GitHub
- URL: https://github.com/xarray-contrib/minimum-dependency-versions
- Owner: xarray-contrib
- License: other
- Created: 2024-11-11T10:52:48.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T08:19:33.000Z (3 months ago)
- Last Synced: 2025-04-08T09:29:20.424Z (3 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 10
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minimum-dependency-versions
Check that the minimum dependency versions follow `xarray`'s policy.
## Usage
To use the `minimum-dependency-versions` action in workflows, simply add a new step:
```yaml
jobs:
my-job:
...
steps:
...
- uses: xarray-contrib/minimum-dependency-versions@version
with:
environment-paths: path/to/env.yaml
```To analyze multiple environments at the same time, pass a multi-line string:
```yaml
jobs:
my-job:
...
steps:
...- uses: xarray-contrib/minimum-dependency-versions@version
with:
environment-paths: |
path/to/env1.yaml
path/to/env2.yaml
path/to/env3.yaml
```