Skip to content

test

test #6

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Dependencies
run: |
python3 -m pip install bumble==0.0.190
- name: Run Test
run: |
find / -name controllers.py
build:

Check failure on line 18 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 18, Col: 5): Unexpected value 'build'
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
env:
CMAKE_PREFIX_PATH: /opt/toolchains
ZEPHYR_VERSION: 3.6.0
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize
run: |
cd /tmp/
west init --mr v$ZEPHYR_VERSION
west update -o=--depth=1 -n
- name: Build
working-directory: /tmp/
run: |
west build $GITHUB_WORKSPACE/samples/uptime -b native_sim --build-dir $GITHUB_WORKSPACE