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 a73d648 commit 47db8d4Copy full SHA for 47db8d4
action.yml
@@ -55,9 +55,9 @@ runs:
55
shell: bash
56
run: |
57
if [ "${{ inputs.synapsekit-version }}" = "latest" ]; then
58
- pip install --quiet "synapsekit[${{ inputs.extras }}]"
+ pip install --quiet --no-cache-dir --upgrade "synapsekit[${{ inputs.extras }}]"
59
else
60
- pip install --quiet "synapsekit[${{ inputs.extras }}]==${{ inputs.synapsekit-version }}"
+ pip install --quiet --no-cache-dir "synapsekit[${{ inputs.extras }}]==${{ inputs.synapsekit-version }}"
61
fi
62
63
- name: Run EvalCI
0 commit comments