Skip to content

ci: use the zephyr-setup action #338

ci: use the zephyr-setup action

ci: use the zephyr-setup action #338

Workflow file for this run

name: Build
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: example-application
- name: Setup Zephyr project
uses: fabiobaltieri/zephyr-setup@main
with:
app-path: example-application
toolchains: arm-zephyr-eabi
- name: Build firmware
working-directory: example-application
run: |
west twister -T app -v --inline-logs --integration
- name: Twister Tests
working-directory: example-application
run: |
west twister -T tests --integration