From 968c36ae1611744b0afcf2adb986edcc2aea94a0 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sat, 18 Feb 2023 12:57:11 +0100 Subject: [PATCH] lets try this action --- .github/workflows/build_check.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml index d445ef6..3bdb33e 100644 --- a/.github/workflows/build_check.yml +++ b/.github/workflows/build_check.yml @@ -84,22 +84,10 @@ jobs: env: PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_AUTH_TOKEN }} steps: - - name: update system - run: sudo apt-get update && sudo apt-get upgrade - name: Checkout code uses: actions/checkout@v3 - - uses: actions/cache@v3 + - name: PlatformIO Test + uses: karniv00l/platformio-remote-test-action@v1 with: - path: | - ~/.cache/pip - ~/.platformio/.cache - key: ${{ runner.os }}-pio - - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - name: Install PlatformIO Core - run: pip install --upgrade platformio - - name: list devices connected - run: pio remote device list - - name: run tests - run: pio remote test -v -r + force-remote: true + verbose: true