revert test_examples.sh

This commit is contained in:
p0lunin 2020-07-03 16:37:05 +03:00
parent 5188142280
commit e44f0786d8
2 changed files with 7 additions and 1 deletions

View file

@ -50,4 +50,4 @@ jobs:
override: true override: true
components: rustfmt, clippy components: rustfmt, clippy
- name: Test the examples - name: Test the examples
run: cargo check --examples run: cd examples && bash test_examples.sh

View file

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