Skip to content

Commit

Permalink
no-pipefail-for-dummy
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Mar 25, 2024
1 parent 3edb339 commit 6e712d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defaults:
# GitHub Actions run without a TTY device. This is a workaround to have one,
# as required for our tests, based on
# https://github.com/actions/runner/issues/241#issuecomment-842566950.
shell: script -q -e -c "bash --noprofile --norc -e +o pipefail {0}"
shell: script -q -e -c "bash --noprofile --norc -eo pipefail {0}"

jobs:
dummy:
Expand All @@ -36,15 +36,15 @@ jobs:
- name: "1"
if: always()
run: |
bash 1.sh
bash +o pipefail 1.sh
- name: "2"
if: always()
run: |
bash 2.sh
bash +o pipefail 2.sh
- name: "3"
if: always()
run: |
bash 3.sh
bash +o pipefail 3.sh
Expand Down

0 comments on commit 6e712d5

Please sign in to comment.