Skip to content

Commit

Permalink
Update test_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
briantoby authored Jan 16, 2025
1 parent e133a67 commit 849540e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,17 @@ jobs:

- name: Find tutorials
run: |
which pandoc
which sed
cd MDtutorials
ls
for path in ./*; do
[ -d "${path}" ] || continue # if not a directory, skip
dirname="$(basename "${path}")"
ls $dirname
mkdir -v ../$dirname
for fil in $dirname/*.md; do
echo $fil
ls -l $fil
done
done

0 comments on commit 849540e

Please sign in to comment.