Skip to content

Commit

Permalink
fix: clearer error message
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 7, 2025
1 parent d369798 commit c0a4a53
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ jobs:
- name: make sure all the table files exist # since pre-commit.ci auto-fix bot will not `git add` *new* files, we fallback to checking their existence here
working-directory: qadb/${{matrix.dataset}}
run: |
ls qaTree.json.table
ls miscTable.md
for f in qaTree.json.table miscTable.md; do
if [ ! -f $f ]; then
echo "missing table file '$f'; run pre-commit hook manually and commit new file(s)"
exit 1
fi
done
- name: compile c++ tests
run: |
cd srcC/tests
Expand Down

0 comments on commit c0a4a53

Please sign in to comment.