Skip to content

Commit

Permalink
Fix syntax problems..
Browse files Browse the repository at this point in the history
  • Loading branch information
llrs-roche committed Feb 10, 2025
1 parent 123af45 commit a151005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -552,14 +552,14 @@ jobs:
test_dir="tests/testthat/"
if [ -z "${ALL_CHANGED_FILES} ]
if [ -z "${ALL_CHANGED_FILES}" ]
then {
echo "No R files affected: test everything."
exit 0
} fi
# Loop through each modified file and determine which tests to run
for file in "${ALL_CHANGED_FILES}"; do
for file in $ALL_CHANGED_FILES; do
echo "Check for $file"
Expand Down

0 comments on commit a151005

Please sign in to comment.