Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jetexe committed Jul 17, 2024
1 parent 97f9eb9 commit 2dfd84c
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,13 @@ jobs:
with:
shell: bash
run: |
SOME_VAR="value123"
ANOTHER_VAR="$(echo 123)"
echo "$SOME_VAR"
echo "$ANOTHER_VAR"
echo "____ test2 : fail ___"
TMPDIR="$(mktemp -d)"
echo "$TMPDIR" ;
SOME_VAR="value123" ; \
ANOTHER_VAR="$(echo 123)"; \
echo $SOME_VAR; \
echo $ANOTHER_VAR; \
TMPDIR="$(mktemp -d)"; \
echo $TMPDIR ;
post: |
echo "____ test2 : fail ___"
echo \$TMPDIR ;
- name: Multiline with line breaks
uses: ./
Expand Down

0 comments on commit 2dfd84c

Please sign in to comment.