馃 A practical web framework for Gleam
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 7ce8979239ba46fdbcfc1a40986686144f82c10e 15 lines 223 B view raw
1#!/bin/sh 2 3set -eu 4 5for project in examples/*; do 6 if [ ! -f "$project/gleam.toml" ]; then 7 continue 8 fi 9 10 echo "Updating dependencies for $project" 11 cd "$project" 12 gleam update 13 gleam test || true 14 cd ../.. 15done