Bump note-c from 3910cbd
to ea36907
#65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2 | |
env: | |
CMAKE_PREFIX_PATH: /opt/toolchains | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Initialize | |
run: | | |
west init -l . | |
west update -o=--depth=1 -n | |
- name: Build i2c example | |
run: | | |
ls -la | |
west build -p -b swan_r5 examples/i2c | |
- name: Build serial example | |
run: | | |
ls -la | |
west build -p -b swan_r5 examples/serial |