We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf86561 commit cf933beCopy full SHA for cf933be
.github/workflows/tauri-cli.yml
@@ -45,8 +45,14 @@ jobs:
45
# 1. `run` subcommand works without any arguments
46
pdl run | grep Usage
47
48
- # 2. `run` subcommand works with demo1.pdl
+ # 2. `run` subcommand works with UI demos (yaml source)
49
pdl run ./demos/demo1.pdl | grep 'write a hello'
50
51
+ # 3. `run` subcommand works with UI demos (json source)
52
+ # demo8 uses a private model? not sure
53
+ for i in ./src/demos/*.json
54
+ do if [[ $(basename $i) != "demo8.json" ]]; then pdl run $i; fi
55
+ done
56
+
57
- name: Tear down xvfb
58
run: killall Xvfb
0 commit comments