We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d9c34 commit 12c8bc3Copy full SHA for 12c8bc3
action.yaml
@@ -2,6 +2,11 @@ name: "minimum-dependency-versions"
2
description: >-
3
Check that the minimum dependency versions follow `xarray`'s policy.
4
inputs:
5
+ policy:
6
+ description: >-
7
+ The policy to follow
8
+ required: True
9
+ type: string
10
environment-paths:
11
12
The paths to the environment files
@@ -22,6 +27,6 @@ runs:
22
27
env:
23
28
COLUMNS: 120
24
29
FORCE_COLOR: 3
25
- INPUT: ${{ inputs.environment-paths }}
30
+ POLICY_PATH: ${{ inputs.policy-path }}
26
31
run: |
- python ${{ github.action_path }}/minimum_versions.py $(echo $INPUT)
32
+ python minimum_versions.py --policy="$POLICY_PATH" ${{ join(fromJSON(inputs.environment-paths), ' ') }}
0 commit comments