CLI Examples #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |