We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4745a14 commit 835bddbCopy full SHA for 835bddb
1 file changed
.github/workflows/recipes_test.yaml
@@ -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