From 98c6c2bf0776865653544edc5b628298a336c4e1 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 25 Jul 2024 12:53:06 +0300 Subject: [PATCH] workflows: Fix indentation Fix indentation of job steps. Signed-off-by: Johan Hedberg --- .github/workflows/build.yml | 48 ++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0572324c..053c3b8f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,31 +16,31 @@ jobs: os: [ubuntu-22.04, macos-14, windows-2022] runs-on: ${{ matrix.os }} steps: - - name: Checkout - uses: actions/checkout@v4 - with: - path: zephyr-silabs + - name: Checkout + uses: actions/checkout@v4 + with: + path: zephyr-silabs - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.11 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11 - - name: Setup Zephyr project - uses: zephyrproject-rtos/action-zephyr-setup@v1 - with: - app-path: zephyr-silabs - toolchains: arm-zephyr-eabi + - name: Setup Zephyr project + uses: zephyrproject-rtos/action-zephyr-setup@v1 + with: + app-path: zephyr-silabs + toolchains: arm-zephyr-eabi - - name: Install Silabs-specific python dependencies - run: | - pip3 install crc + - name: Install Silabs-specific python dependencies + run: | + pip3 install crc - - name: Build hello world - working-directory: zephyr-silabs - shell: bash - run: | - if [ "${{ runner.os }}" = "Windows" ]; then - EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" - fi - west twister -T ../zephyr/samples -s sample.basic.helloworld -p siwx917_rb4338a -v --inline-logs $EXTRA_TWISTER_FLAGS + - name: Build hello world + working-directory: zephyr-silabs + shell: bash + run: | + if [ "${{ runner.os }}" = "Windows" ]; then + EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" + fi + west twister -T ../zephyr/samples -s sample.basic.helloworld -p siwx917_rb4338a -v --inline-logs $EXTRA_TWISTER_FLAGS