mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 06:51:01 +01:00
10 lines
109 B
Bash
10 lines
109 B
Bash
##!/bin/sh
|
|
|
|
for example in */; do
|
|
echo Testing $example...
|
|
cd $example
|
|
cargo check &
|
|
cd ..
|
|
done
|
|
|
|
wait
|