Skip to content

Commit 19cfc90

Browse files
committed
fix: fettling
1 parent 9d8999e commit 19cfc90

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

.arduino-ci.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,10 @@ compile:
66
- uno
77
libraries:
88
- "OneWire"
9-
10-
# Exclude specific directories from compilation
11-
exclude_dirs:
12-
- examples
139

1410
# Unit testing settings
1511
unittest:
1612
platforms:
1713
- uno
1814
libraries:
19-
- "OneWire"
20-
21-
# Exclude specific directories from compilation
22-
exclude_dirs:
23-
- examples
15+
- "OneWire"

.github/workflows/arduino-ci.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# .github/workflows/arduino-ci.yml
2-
31
name: Arduino CI
42

53
on: [push, pull_request]
@@ -74,6 +72,11 @@ jobs:
7472
run: |
7573
ls -R
7674
77-
- name: Run tests excluding ESP-WebServer example
75+
- name: Remove Blacklisted Example Sketches
76+
run: |
77+
echo "Removing blacklisted example sketches..."
78+
rm -f examples/ESP-WebServer/ESP-WebServer.ino
79+
80+
- name: Run tests without compiling examples
7881
run: |
7982
bundle exec arduino_ci.rb

0 commit comments

Comments
 (0)