mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
13 lines
329 B
Bash
Executable File
13 lines
329 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for f in ../../_examples/*; do
|
|
if [ -d "$f" ]; then
|
|
# Will not run if no directories are available
|
|
go mod init
|
|
go get -u github.com/kataras/iris/v12@main
|
|
go mod download
|
|
go run .
|
|
fi
|
|
done
|
|
|
|
# git update-index --chmod=+x ./.github/scripts/setup_examples_test.bash |