github/workflows: Add new workflow to test embedding example.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
df86cef59a
commit
73623d04d5
|
@ -0,0 +1,21 @@
|
||||||
|
name: Check examples
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '.github/workflows/*.yml'
|
||||||
|
- 'examples/**'
|
||||||
|
- 'ports/unix/**'
|
||||||
|
- 'py/**'
|
||||||
|
- 'shared/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
embedding:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build
|
||||||
|
run: make -C examples/embedding
|
||||||
|
- name: Run
|
||||||
|
run: test "$(./examples/embedding/hello-embed)" = "Hello world of easy embedding!"
|
Loading…
Reference in New Issue