mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-10 03:52:24 +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
|
||
|
|