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