Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 21 days 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T14:35:03.000Z (3 months ago)
- Last Synced: 2024-10-15T17:23:52.350Z (about 1 month ago)
- Topics: cloe, functional-programming, github-action, github-actions
- Homepage:
- Size: 33.2 KB
- Stars: 0
- 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
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-cloe-action?include_prereleases)
![functional-tests-local](https://github.com/fabasoad/setup-cloe-action/actions/workflows/functional-tests-local.yml/badge.svg)
![functional-tests-remote](https://github.com/fabasoad/setup-cloe-action/actions/workflows/functional-tests-remote.yml/badge.svg)
![security](https://github.com/fabasoad/setup-cloe-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-cloe-action/actions/workflows/linting.yml/badge.svg)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).## Example usage
### Workflow configuration
```yaml
name: Teston: push
jobs:
setup:
name: cloe
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/setup-cloe-action@main
- name: Print version
run: cloe --version
```### Result
```shell
Run cloe --version
0.1.0
```