From b57a505379ad838617199b9de809e5583267ec6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Mich=C3=A1lek?= Date: Fri, 25 Jun 2021 13:16:00 +0200 Subject: [PATCH] Create test-build.yml Add manual dispatch for testing build in Docker image --- .github/workflows/test-build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test-build.yml diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml new file mode 100644 index 0000000..4eada11 --- /dev/null +++ b/.github/workflows/test-build.yml @@ -0,0 +1,16 @@ +name: Run test build with esp-idf-rust image from DockerHub + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: esp-idf build + uses: espressif/esp-idf-ci-action@rust-latest