Skip to content

Commit 9bf0ee2

Browse files
committed
fix
1 parent 9a57190 commit 9bf0ee2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/check-sketches-deps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
- name: Install the latest version of Arduino CLI
1515
run: |
16-
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh
16+
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
1717
1818
- name: Update Arduino cores and libraries and install Zephyr core
1919
run: |
20-
./arduino-cli update
21-
./arduino-cli core install arduino:zephyr
20+
arduino-cli update
21+
arduino-cli core install arduino:zephyr
2222
2323
- name: Verify sketches
2424
run: |
2525
SKETCHES=$(find . -name "*.ino")
2626
for SKETCH in $SKETCHES; do
2727
echo "Verifying $SKETCH"
28-
./arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
28+
arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
2929
done

0 commit comments

Comments
 (0)