Skip to content

Commit 849540e

Browse files
authored
Update test_build.yml
1 parent e133a67 commit 849540e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test_build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,17 @@ jobs:
1919

2020
- name: Find tutorials
2121
run: |
22+
which pandoc
23+
which sed
2224
cd MDtutorials
2325
ls
2426
for path in ./*; do
2527
[ -d "${path}" ] || continue # if not a directory, skip
2628
dirname="$(basename "${path}")"
27-
ls $dirname
29+
mkdir -v ../$dirname
30+
for fil in $dirname/*.md; do
31+
echo $fil
32+
ls -l $fil
33+
done
2834
done
2935

0 commit comments

Comments
 (0)