File tree 1 file changed +9
-9
lines changed 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: "compas-actions.build"
2
2
description : " Build and test COMPAS or its plugins."
3
3
4
4
inputs :
5
- test_lint :
5
+ invoke_lint :
6
6
description : " Whether to test lint errors."
7
7
required : true
8
8
default : " false"
9
- test_compas :
9
+ check_import :
10
10
description : " Whether to test with python -m compas."
11
11
required : true
12
12
default : " false"
13
- test :
13
+ invoke_test :
14
14
description : " Whether to run invoke test."
15
15
required : false
16
16
default : " true"
@@ -55,15 +55,15 @@ runs:
55
55
pip install cython --install-option='--no-cython-compile'
56
56
pip install --no-cache-dir -r requirements-dev.txt
57
57
58
- if [[ ${{ inputs.test_lint }} = "true" ]]; then
58
+ if [[ ${{ inputs.invoke_lint }} = "true" ]]; then
59
59
invoke lint
60
60
fi;
61
61
62
- if [[ ${{ inputs.test_compas }} = "true" ]]; then
62
+ if [[ ${{ inputs.check_import }} = "true" ]]; then
63
63
python -m compas
64
64
fi;
65
65
66
- if [[ ${{ inputs.test }} = "true" ]]; then
66
+ if [[ ${{ inputs.invoke_test }} = "true" ]]; then
67
67
invoke test
68
68
fi;
69
69
@@ -113,14 +113,14 @@ runs:
113
113
exit 1
114
114
fi
115
115
116
- if [[ ${{ inputs.test_lint }} = "true" ]]; then
116
+ if [[ ${{ inputs.invoke_lint }} = "true" ]]; then
117
117
invoke lint
118
118
fi;
119
119
120
- if [[ ${{ inputs.test_compas }} = "true" ]]; then
120
+ if [[ ${{ inputs.check_import }} = "true" ]]; then
121
121
python -m compas
122
122
fi;
123
123
124
- if [[ ${{ inputs.test }} = "true" ]]; then
124
+ if [[ ${{ inputs.invoke_test }} = "true" ]]; then
125
125
invoke test
126
126
fi;
You can’t perform that action at this time.
0 commit comments