File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/artifacts_build Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 38
38
- name : Set up Python
39
39
uses : actions/setup-python@v4
40
40
with :
41
- python-version : ${{ matrix .python-version }}
41
+ python-version : ${{ inputs .python-version }}
42
42
43
43
- name : Install tox
44
44
shell : bash
@@ -51,11 +51,11 @@ runs:
51
51
path : |
52
52
.tox
53
53
~/.cache/pip
54
- key : v7-build-tox-cache-${{ matrix .python-version }}-${{ inputs.package_name }}-${{ inputs.os }}-${{ hashFiles('tox.ini', 'dev-requirements.txt') }}
54
+ key : v7-build-tox-cache-${{ inputs .python-version }}-${{ inputs.package_name }}-${{ inputs.os }}-${{ hashFiles('tox.ini', 'dev-requirements.txt') }}
55
55
56
56
- name : run tox
57
57
shell : bash
58
- run : tox -f ${{ matrix .python-version }}-${{ inputs.package_name }} -- -ra --benchmark-json=${{ matrix .python-version }}-${{ inputs.package_name }}-${{ inputs.os }}-benchmark.json
58
+ run : tox -f ${{ inputs .python-version }}-${{ inputs.package_name }} -- -ra --benchmark-json=${{ inputs .python-version }}-${{ inputs.package_name }}-${{ inputs.os }}-benchmark.json
59
59
60
60
- name : Configure AWS Credentials
61
61
uses : aws-actions/configure-aws-credentials@v4
You can’t perform that action at this time.
0 commit comments