This GitHub Action installs the Temporal CLI on a GitHub Actions runner.
To use this action, add the following step to your GitHub Actions workflow:
steps:
- name: Install Temporal CLI
uses: temporalio/setup-temporal@v0
- name: Start a local Temporal server
shell: bash
run: temporal server start-dev --headless &By default, the action installs the latest version of the Temporal CLI. You can specify the version of the Temporal CLI to install using the version input:
steps:
- name: Install Temporal CLI
uses: temporalio/setup-temporal@v0
with:
version: v0.12.0This project is licensed under the MIT License. See the LICENSE file for details.