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