Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 694 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 694 Bytes

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:

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:

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