Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/tauri-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,14 @@ jobs:
# 1. `run` subcommand works without any arguments
pdl run | grep Usage

# 2. `run` subcommand works with demo1.pdl
# 2. `run` subcommand works with UI demos (yaml source)
pdl run ./demos/demo1.pdl | grep 'write a hello'

# 3. `run` subcommand works with UI demos (json source)
# demo8 uses a private model? not sure
for i in ./src/demos/*.json
do if [[ $(basename $i) != "demo8.json" ]]; then pdl run $i; fi
done

- name: Tear down xvfb
run: killall Xvfb