Skip to content

Commit 602d9c1

Browse files
committed
demonstrate how to analyze multiple envs at the same time
1 parent 2c2e7a8 commit 602d9c1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,20 @@ jobs:
1616
with:
1717
environment-paths: path/to/env.yaml
1818
```
19+
20+
To analyze multiple environments at the same time, pass a multi-line string:
21+
22+
```yaml
23+
jobs:
24+
my-job:
25+
...
26+
steps:
27+
...
28+
29+
- uses: xarray-contrib/minimum-dependency-versions@version
30+
with:
31+
environment-paths: |
32+
path/to/env1.yaml
33+
path/to/env2.yaml
34+
path/to/env3.yaml
35+
```

0 commit comments

Comments
 (0)