Merge pull request #1 from khrystynaO/dependabot/github_actions/dot-g… #83
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 project for latest version | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Setup Zephyr project | |
uses: khrystynaO/zephyr-setup@khrystynaO/fix/zephyr-base | |
with: | |
toolchains: arm-zephyr-eabi | |
# zephyr-version: v3.5.0 | |
manifest-file: hello_world/west_v3.5.0.yaml | |
app-path: hello_world | |
- name: build | |
run: west build hello_world -b nucleo_f767zi | |