Skip to content

Commit 6303c43

Browse files
committed
workflow: add simple recipes consistency check
Run 'bob ls' on the test recipes to test if the recipes are at leats parseable.
1 parent 4745a14 commit 6303c43

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: recipes-test
2+
description: Run bob ls on test recipes
3+
"on": [push, pull_request]
4+
jobs:
5+
check:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
11+
- name: Setup Bob
12+
run: python -m pip install BobBuildTool
13+
14+
- name: Fetch layers
15+
run: bob -C tests/buildall layers update
16+
17+
- name: Run bob ls
18+
run: bob -C tests/buildall ls

0 commit comments

Comments
 (0)