Force PIO update in unit-test action
This commit is contained in:
parent
22c92d1462
commit
427afffca0
|
@ -38,8 +38,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install --upgrade platformio
|
pip install --upgrade platformio
|
||||||
|
platformio update
|
||||||
|
platformio platform update
|
||||||
|
|
||||||
- name: Run Unit Tests
|
- name: Run Unit Tests
|
||||||
env:
|
env:
|
||||||
PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_AUTH_TOKEN }}
|
PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_AUTH_TOKEN }}
|
||||||
run: platformio remote test --force-remote --environment megaatmega2560
|
run: |
|
||||||
|
platformio run -e megaatmega2560
|
||||||
|
platformio remote test --force-remote --environment megaatmega2560
|
||||||
|
|
Loading…
Reference in New Issue