Skip to content

Commit

Permalink
refactor: split up the shell commands
Browse files Browse the repository at this point in the history
  • Loading branch information
epiccurious committed Dec 18, 2023
1 parent 7ff751b commit fbb9e91
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/bash_validation_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
with:
sh_checker_shellcheck_disable: true

- name: Install virtualenv dependency
run: sudo apt update && sudo apt install -y python3-virtualenv

- name: Run flash_your_device
run: |
sudo apt update && sudo apt install -y python3-virtualenv
timeout 600 /bin/bash -x ./flash_your_device || [[ "$?" -eq "124" ]] && true
run: timeout 600 /bin/bash -x ./flash_your_device || [[ "$?" -eq "124" ]] && true

0 comments on commit fbb9e91

Please sign in to comment.