https://github.com/fabasoad/setup-cloe-action
This GitHub action installs Cloe
https://github.com/fabasoad/setup-cloe-action
cloe functional-programming github-action github-actions
Last synced: 8 months ago
JSON representation
This GitHub action installs Cloe
- Host: GitHub
- URL: https://github.com/fabasoad/setup-cloe-action
- Owner: fabasoad
- License: mit
- Created: 2022-11-13T14:00:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:16.000Z (8 months ago)
- Last Synced: 2025-03-11T23:19:09.307Z (8 months ago)
- Topics: cloe, functional-programming, github-action, github-actions
- Language: Shell
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Setup Cloe
[](https://stand-with-ukraine.pp.ua)




This action installs a [Cloe](https://cloe-lang.org).
## Supported OS
| OS | Arch | |
|---------|--------|--------------------|
| Windows | x86_84 | :white_check_mark: |
| Windows | arm | :x: |
| Linux | x86_84 | :white_check_mark: |
| Linux | arm | :x: |
| macOS | x86_84 | :white_check_mark: |
| macOS | arm | :x: |
## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[rake](https://ruby.github.io/rake), [go](https://go.dev).
## Inputs
```yaml
- uses: fabasoad/setup-cloe-action@v0
with:
# (Optional) If "false" skips installation if cloe is already installed. If
# "true" installs cloe in any case. Defaults to "false".
force: "false"
```
## Outputs
| Name | Description | Example |
|-----------|-----------------------------------|---------|
| installed | Whether cloe was installed or not | `true` |
## Example usage
### Workflow configuration
```yaml
name: Test
on: push
jobs:
setup:
name: cloe
runs-on: ubuntu-latest
steps:
- uses: fabasoad/setup-cloe-action@v0
- name: Print version
run: cloe --version
```
### Result
```shell
Run cloe --version
0.1.0
```
## Contributions
