mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 12:15:09 -05:00
By default, all commands in the `run` section of `.github/workflows/conformance.yml` are executed, regardless of their return values and the return value of the last command is used as the result for the entire flow. Failing test followed by passing tests thus remain undetected. This change forces the use of the bash shell and causes it to exit immediately with a non-zero return value when one of the commands fails using `set -e`.