We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c69982 commit f16dc3eCopy full SHA for f16dc3e
.github/workflows/validate_input_files.yml
@@ -32,10 +32,8 @@ jobs:
32
id: validate
33
run: |
34
python ./src/scripts/validate_input_files.py 2>&1 | tee validation_output.txt
35
- python ./src/scripts/validate_input_files.py
36
- exit_code=$?
37
- echo "Exit code111: $exit_code"
38
- echo "Exit code2: ${PIPESTATUS[0]}"
+ exit_code=${PIPESTATUS[0]}
+ echo "Exit code3: $exit_code"
39
echo "Validation output:"
40
cat validation_output.txt
41
if [ $exit_code -ne 0 ]; then
0 commit comments