Skip to content

Commit

Permalink
fix: Add test for interactive shell
Browse files Browse the repository at this point in the history
  • Loading branch information
achxkloel committed Jan 30, 2024
1 parent d5d6f7e commit abfcd77
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/hil.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,17 @@ jobs:
name: espflash
path: espflash_app

- name: interactive test
shell: bash
run: |
echo "$-"
if [[ $- == *i* ]]; then
echo "Shell is interactive"
else
echo "Shell is not interactive"
fi
- run: chmod +x espflash_app/espflash

- name: board-info test
Expand Down

0 comments on commit abfcd77

Please sign in to comment.