Skip to content

Commit 2dfd84c

Browse files
committed
test
1 parent 97f9eb9 commit 2dfd84c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/tests.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,13 @@ jobs:
103103
with:
104104
shell: bash
105105
run: |
106-
SOME_VAR="value123"
107-
ANOTHER_VAR="$(echo 123)"
108-
echo "$SOME_VAR"
109-
echo "$ANOTHER_VAR"
110-
echo "____ test2 : fail ___"
111-
TMPDIR="$(mktemp -d)"
112-
echo "$TMPDIR" ;
106+
SOME_VAR="value123" ; \
107+
ANOTHER_VAR="$(echo 123)"; \
108+
echo $SOME_VAR; \
109+
echo $ANOTHER_VAR; \
110+
TMPDIR="$(mktemp -d)"; \
111+
echo $TMPDIR ;
113112
post: |
114-
echo "____ test2 : fail ___"
115113
echo \$TMPDIR ;
116114
- name: Multiline with line breaks
117115
uses: ./

0 commit comments

Comments
 (0)