https://github.com/temporalio/setup-temporal
https://github.com/temporalio/setup-temporal
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/temporalio/setup-temporal
- Owner: temporalio
- License: mit
- Created: 2023-01-26T22:43:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-05-18T23:32:25.000Z (about 1 month ago)
- Last Synced: 2026-06-03T05:41:51.775Z (27 days ago)
- Language: TypeScript
- Size: 573 KB
- Stars: 12
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Temporal Action
This GitHub Action installs the [Temporal CLI](https://github.com/temporalio/cli) on a GitHub Actions runner.
## Usage
To use this action, add the following step to your GitHub Actions workflow:
```yaml
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:
```yaml
steps:
- name: Install Temporal CLI
uses: temporalio/setup-temporal@v0
with:
version: v0.12.0
```
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.