Commit f9ecec7 1 parent 5f24eef commit f9ecec7 Copy full SHA for f9ecec7
File tree 3 files changed +6
-6
lines changed
actions/install-python-and-package
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ inputs:
15
15
16
16
test-release :
17
17
required : false
18
- description : " Boolean to specify if testing the latest released version of the package (true) or the editable one (false)."
19
- default : false
18
+ description : " To specify if testing the latest released version of the package (true) or the editable one (false)."
19
+ default : " false"
20
20
21
21
runs :
22
22
using : " composite"
@@ -84,11 +84,11 @@ runs:
84
84
conda install pytables
85
85
- name : Install the editable version of the package
86
86
shell : bash {0}
87
- if : ${{ inputs.test-release }} == false
87
+ if : ${{ inputs.test-release }} == " false"
88
88
run : pip install .'[${{ inputs.extras-require }}]'
89
89
- name : Install the latest released version of the package
90
90
shell : bash {0}
91
- if : ${{ inputs.test-release }} == true
91
+ if : ${{ inputs.test-release }} == " true"
92
92
run : |
93
93
rm -r deeprank2
94
94
pip install deeprank2
Original file line number Diff line number Diff line change 45
45
with :
46
46
python-version : ${{ matrix.python-version }}
47
47
extras-require : test, publishing
48
- test-release : false
48
+ test-release : " false"
49
49
- name : Run unit tests
50
50
run : pytest -v
51
51
- name : Verify that we can build the package
Original file line number Diff line number Diff line change 45
45
with :
46
46
python-version : ${{ matrix.python-version }}
47
47
extras-require : test, publishing
48
- test-release : true
48
+ test-release : " true"
49
49
- name : Run unit tests
50
50
run : pytest -v
51
51
- name : Verify that we can build the package
You can’t perform that action at this time.
0 commit comments