changed check of examples

This commit is contained in:
p0lunin 2020-07-02 16:17:40 +03:00
parent 852a5b3191
commit 8158cf7347
2 changed files with 1 additions and 8 deletions

View file

@ -32,4 +32,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Test the examples
run: cd examples && bash test_examples.sh
run: cargo check --examples

View file

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