Merge branch 'master' into webhooks

This commit is contained in:
Temirkhan Myrzamadi 2020-03-31 21:52:44 +06:00 committed by GitHub
commit b9301bb1d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -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'

View file

@ -0,0 +1,7 @@
##!/bin/sh
for example in */; do
echo Testing $example...
cd $example; cargo check; cd ..;
done