Skip to content

CLI Examples

CLI Examples #66

Workflow file for this run

name: CLI Examples
on:
workflow_call:
workflow_dispatch:
pull_request:
paths:
- "cli/**"
- ".github/workflows/*cli*"
schedule:
- cron: '0 9 * * WED' # https://crontab.guru/#0_9_*_*_WED
jobs:
test_cli:
name: Run CLI samples
runs-on: macos-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Install CLI
run: |
brew tap trinsic-id/tap
brew install trinsic-cli
- name: Run CLI demo
run: ./cli/Run-Demo.ps1
shell: pwsh