Skip to content

Commit

Permalink
fix multiline string
Browse files Browse the repository at this point in the history
  • Loading branch information
maxeeem committed Jan 24, 2024
1 parent 85312a2 commit 74079a3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/python-app-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@ jobs:
workflow: python-app-dev.yml
name: test-report

- name: Print diff
run: |
diff -u output-dev.txt output-pr.txt
- name: Extract number of failures and errors
id: extract_results
run: |
{
echo 'test_results<<EOOOF'
echo 'test_results<<EOF'
diff -u output-dev.txt output-pr.txt
echo EOOOF
echo EOF
} >> "$GITHUB_ENV"
- name: Setup Node (for diff)
Expand All @@ -72,6 +76,8 @@ jobs:
uses: thollander/[email protected]
with:
message: |
Test results from DEV: $test_dev
Test results from PR: $test_pr
$GITHUB_STEP_SUMMARY
comment_tag: execution

Expand Down

0 comments on commit 74079a3

Please sign in to comment.