thisisnic commented on code in PR #49655:
URL: https://github.com/apache/arrow/pull/49655#discussion_r3030760549
##########
dev/tasks/r/github.linux.cran.yml:
##########
@@ -55,6 +55,13 @@ jobs:
- name: Dump test logs
run: cat arrow/r/check/arrow.Rcheck/tests/testthat.Rout*
if: always()
+ - name: Check for non-API calls
+ run: |
+ if grep -q "non-API" arrow/r/check/arrow.Rcheck/00check.log; then
+ echo "Found non-API calls in R CMD check output:"
+ grep -A2 "non-API" arrow/r/check/arrow.Rcheck/00check.log
+ exit 1
+ fi
Review Comment:
Great idea!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]