mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 09:49:07 +01:00
revert test_examples.sh
This commit is contained in:
parent
5188142280
commit
e44f0786d8
2 changed files with 7 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -50,4 +50,4 @@ jobs:
|
|||
override: true
|
||||
components: rustfmt, clippy
|
||||
- name: Test the examples
|
||||
run: cargo check --examples
|
||||
run: cd examples && bash test_examples.sh
|
||||
|
|
6
examples/test_examples.sh
Normal file
6
examples/test_examples.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
##!/bin/sh
|
||||
|
||||
for example in */; do
|
||||
echo Testing $example...
|
||||
cd $example; cargo check; cd ..;
|
||||
done
|
Loading…
Reference in a new issue