mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-14 11:44:04 +01:00
Merge branch 'master' into webhooks
This commit is contained in:
commit
b9301bb1d5
2 changed files with 10 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -64,6 +64,9 @@ jobs:
|
|||
command: clippy
|
||||
args: --all-targets --all-features -- -D warnings
|
||||
|
||||
- name: Test the examples
|
||||
run: cd examples && bash test_examples.sh
|
||||
|
||||
- name: fmt
|
||||
uses: actions-rs/cargo@v1
|
||||
if: matrix.rust == 'nightly'
|
||||
|
|
7
examples/test_examples.sh
Normal file
7
examples/test_examples.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
##!/bin/sh
|
||||
|
||||
for example in */; do
|
||||
echo Testing $example...
|
||||
cd $example; cargo check; cd ..;
|
||||
done
|
||||
|
Loading…
Add table
Reference in a new issue