Skip to content

Commit 4bf1d1c

Browse files
committed
Split SimpleServer in multiple examples
1 parent a1e7550 commit 4bf1d1c

File tree

33 files changed

+2525
-612
lines changed

33 files changed

+2525
-612
lines changed

.github/scripts/list-examples.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
#!/bin/bash
3+
# shellcheck disable=SC2002
4+
5+
# fail the script if any command unexpectedly fails
6+
set -e
7+
8+
examples=$(ls examples)
9+
matrix="["
10+
for example in $examples; do
11+
matrix="$matrix\"$example\","
12+
done
13+
matrix="${matrix%,}]"
14+
echo "$matrix"

0 commit comments

Comments
 (0)