File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 42
42
43
43
- name : Setup optional docker container
44
44
run : |
45
- test "X${{ inputs.service }}" = Xtrue && \
45
+ if test "X${{ inputs.service }}" = Xtrue ; then
46
46
docker run --rm -d ${{ inputs.docker-run-line }}
47
+ fi
47
48
48
49
- name : Setup Python
49
50
55
56
run : |
56
57
python3 -m pip install --upgrade pip
57
58
pip install -r .github/workflows/requirements.txt
58
- test "x${{ inputs.additional-requirements }}" = x || \
59
+ if ! test "x${{ inputs.additional-requirements }}" = x ; then
59
60
pip install ${{ inputs.additional-requirements }}
61
+ fi
60
62
61
63
- name : Create output directory
62
64
run : mkdir -p ${{RUNNER.temp}}/nb-runner
Original file line number Diff line number Diff line change 29
29
" \n " ,
30
30
" Se puede utilizar el *shell* propio de HBase en la instalación actual.\n " ,
31
31
" \n " ,
32
- " Con HBase vamos a simular un modo _semi-clúster_ con una sola máquina.\n "
32
+ " Con HBase vamos a simular un modo _semi-clúster_ con una sola máquina."
33
33
]
34
34
},
35
35
{
You can’t perform that action at this time.
0 commit comments