We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00cd4b7 commit 447213bCopy full SHA for 447213b
.github/workflows/build.yml
@@ -30,5 +30,4 @@ jobs:
30
cd ../ch32-data/build/
31
git clone https://github.com/ch32-rs/ch32-metapac.git
32
- name: Build Only
33
- run: |
34
- ./ci.sh
+ run: ./ci.sh
ci.sh
@@ -3,6 +3,6 @@
3
set -ex
4
set -o pipefail
5
6
-for d in $(find examples -depth 1 -type d); do
+for d in $(find examples -maxdepth 1 -type d); do
7
(cd $d && cargo build --release)
8
done
0 commit comments