Skip to content

Commit 3861d1c

Browse files
committedApr 18, 2025·
CIのコンパイルチェックにおける依存パッケージを追加
1 parent 8a78e31 commit 3861d1c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

‎.github/workflows/compile-sketches.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ jobs:
2828
platforms: | # ESP32公式のpackage indexを使用する
2929
- name: esp32:esp32
3030
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
31-
version: 3.0.1
31+
version: 3.1.1
32+
libraries: | # 依存パッケージを指定
33+
- name: AsyncTCP
34+
source-url: https://github.com/ESP32Async/AsyncTCP.git
35+
- name: ESPAsyncWebServer
36+
source-url: https://github.com/ESP32Async/ESPAsyncWebServer.git
3237
sketch-paths: |
3338
- pico_v2_STEP1_LED
3439
- pico_v2_STEP2_SWITCH

‎.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: arduino/arduino-lint-action@v1
17+
- uses: arduino/arduino-lint-action@v2
1818
with:
1919
recursive: true
2020
compliance: specification

0 commit comments

Comments
 (0)
Please sign in to comment.