https://github.com/fabasoad/setup-ciao-action
This GitHub action installs Ciao
https://github.com/fabasoad/setup-ciao-action
ciao ciao-prolog desktop-tool github-action github-actions
Last synced: 4 months ago
JSON representation
This GitHub action installs Ciao
- Host: GitHub
- URL: https://github.com/fabasoad/setup-ciao-action
- Owner: fabasoad
- License: mit
- Created: 2022-11-22T14:52:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:21.000Z (4 months ago)
- Last Synced: 2025-03-11T23:19:11.025Z (4 months ago)
- Topics: ciao, ciao-prolog, desktop-tool, github-action, github-actions
- Language: Shell
- Homepage:
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup Ciao action
[](https://stand-with-ukraine.pp.ua)



This action installs [Ciao](http://ciao-lang.org) CLI tool.
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :x: |
| Linux | :white_check_mark: |
| macOS | :white_check_mark: |## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/setup-ciao-action@v0
with:
# (Optional) Ciao version. Defaults to the latest version.
version: "1.24.0-m1"
# (Optional) If "false" skips installation if ciao is already installed. If
# "true" installs ciao in any case. Defaults to "false".
force: "false"
# (Optional) GitHub token that is used to send requests to GitHub API such
# as getting latest release. Defaults to the token provided by GitHub Actions
# environment.
github-token: "${{ github.token }}"
```## Outputs
| Name | Description | Example |
|-----------|-----------------------------------|---------|
| installed | Whether ciao was installed or not | `true` |## Example usage
### Workflow configuration
```yaml
name: Teston: push
jobs:
setup:
name: Ciao
runs-on: ubuntu-latest
steps:
- uses: fabasoad/setup-ciao-action@v0
- name: Run command
run: ciao list
```### Result
```shell
Run ciao list
builder
core
```