Skip to content

Commit

Permalink
ci: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jnicoulaud-ledger committed Jun 20, 2024
1 parent b5c0ab1 commit f576c93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ jobs:
id: validation
shell: bash
run: |
set +e
echo 'validation_output<<EOF' >> $GITHUB_OUTPUT
pipenv run validate_files >> $GITHUB_OUTPUT
pipenv run validate_files | tee $GITHUB_OUTPUT
[[ $? ]] && result="success" || result="failure"
echo 'EOF' >> $GITHUB_OUTPUT
echo "result=$result" >> $GITHUB_OUTPUT
echo $result
echo $GITHUB_OUTPUT
- name: Add failure report comment
if: ${{ steps.validation.outputs.result != 'success' && github.event_name == 'pull_request' }}
Expand Down

0 comments on commit f576c93

Please sign in to comment.