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.
sys.path
1 parent 5883e35 commit 0bb207dCopy full SHA for 0bb207d
action.yaml
@@ -28,6 +28,7 @@ runs:
28
run: |
29
echo "::group::Install dependencies"
30
python -m pip install -r ${{ github.action_path }}/requirements.txt
31
+ python -m pip install ${{ github.action_path }}
32
echo "::endgroup::"
33
- name: analyze environments
34
shell: bash -l {0}
@@ -38,4 +39,7 @@ runs:
38
39
ENVIRONMENT_PATHS: ${{ inputs.environment-paths }}
40
TODAY: ${{ inputs.today }}
41
- PYTHONPATH=${{github.action_path}} python -m minimum_versions validate --today="$TODAY" --policy="$POLICY_PATH" $ENVIRONMENT_PATHS
42
+ python -m minimum_versions validate \
43
+ --today="$TODAY" \
44
+ --policy="$POLICY_PATH" \
45
+ $ENVIRONMENT_PATHS
0 commit comments