Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jaisnan committed Sep 15, 2023
1 parent 6b67c24 commit 467b1ef
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,15 @@ jobs:
echo "The output is: $output"
continue-on-error: true # Continue to the next steps even if this job fails

- name: Debug Step
run: |
# Check if error.log exists
if [ -f error.log ]; then
# Read the error message from the file
error_message=$(cat error.log)
echo "Error from Step 2: $error_message"
else
echo "No error message found."
fi
- name: Debug Step
run: |
if [ -f error.log ]; then
# Read the error message from the file
error_message=$(cat error.log)
echo "Error from Step 2: $error_message"
else
echo "No error message found."
fi
- name: Run Kani with older version
uses: ./ # Uses the action in the root directory
Expand Down

0 comments on commit 467b1ef

Please sign in to comment.