Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

This GitHub action installs Ciao

Awesome Lists containing this project

README

        

# Setup Ciao action

[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![Release](https://img.shields.io/github/v/release/fabasoad/setup-ciao-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-ciao-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/setup-ciao-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-ciao-action/actions/workflows/linting.yml/badge.svg)

This action installs [Ciao](http://ciao-lang.org) CLI tool.

Supported OS: Linux and macOS.

## Inputs

| Name | Required | Description | Default | Possible values |
|---------|----------|---------------------------------------------------------------------------------------------|-------------|-----------------|
| version | No | Version of `Ciao` tool that can be found [here](https://github.com/ciao-lang/ciao/releases) | `1.24.0-m1` | <String> |

## Example usage

### Workflow configuration

```yaml
name: Test

on: push

jobs:
setup:
name: Ciao
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/setup-ciao-action@main
- name: Run command
run: ciao list
```

### Result

```shell
Run ciao list
builder
core
```