Fix PIO caching to speed up checks

This commit is contained in:
Scott Lahteine 2025-04-06 21:33:04 -05:00
parent 835a186b9e
commit 53eeafa9a8

View file

@ -54,8 +54,12 @@ jobs:
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
path: |
~/.platformio
.pio/libdeps
key: ${{ runner.os }}-pio-v1
restore-keys: |
${{ runner.os }}-pio-
- name: Select Python 3.9
uses: actions/setup-python@v5