We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad49d8f commit 4e2fda6Copy full SHA for 4e2fda6
.github/workflows/run-testsuite.yml
@@ -27,9 +27,9 @@ jobs:
27
28
- name: Install platform
29
run: |
30
- echo $pwd
31
- mkdir Sketches
32
- dir /S $pwd
+ Get-Location
+ New-Item -Path Sketches
+ Get-ChildItem -Recurse
33
34
arduino-cli config init
35
arduino-cli config add board_manager.additional_urls https://arduino.esp8266.com/stable/package_esp8266com_index.json
@@ -39,7 +39,7 @@ jobs:
39
arduino-cli config set directories.user "$PWD\Sketches"
40
arduino-cli config dump
41
42
- dir $env:LOCALAPPDATA\Arduino15
+ Get-ChildItem $env:LOCALAPPDATA\Arduino15
43
44
arduino-cli core update-index
45
arduino-cli core install ${{ inputs.platform }}
0 commit comments