{"id":16019820,"url":"https://github.com/fabasoad/setup-cloe-action","last_synced_at":"2025-03-18T03:31:29.548Z","repository":{"id":63140530,"uuid":"565466092","full_name":"fabasoad/setup-cloe-action","owner":"fabasoad","description":"This GitHub action installs Cloe","archived":false,"fork":false,"pushed_at":"2025-03-11T22:03:16.000Z","size":49,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T23:19:09.307Z","etag":null,"topics":["cloe","functional-programming","github-action","github-actions"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabasoad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad"],"github":["fabasoad"],"ko_fi":"fabasoad","liberapay":"fabasoad"}},"created_at":"2022-11-13T14:00:23.000Z","updated_at":"2025-03-11T22:03:19.000Z","dependencies_parsed_at":"2024-01-03T08:24:15.196Z","dependency_job_id":"fa882b29-2ec4-4c66-8a93-f93880d8dd86","html_url":"https://github.com/fabasoad/setup-cloe-action","commit_stats":{"total_commits":17,"total_committers":5,"mean_commits":3.4,"dds":0.5882352941176471,"last_synced_commit":"9ecfc893adad121cd4c7e727365f6cb112f63b49"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cloe-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cloe-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cloe-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cloe-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabasoad","download_url":"https://codeload.github.com/fabasoad/setup-cloe-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243896893,"owners_count":20365457,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloe","functional-programming","github-action","github-actions"],"created_at":"2024-10-08T17:05:32.641Z","updated_at":"2025-03-18T03:31:29.542Z","avatar_url":"https://github.com/fabasoad.png","language":"Shell","funding_links":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad","https://github.com/sponsors/fabasoad","https://ko-fi.com/fabasoad","https://liberapay.com/fabasoad"],"categories":[],"sub_categories":[],"readme":"# Setup Cloe\n\n[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)\n![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-cloe-action?include_prereleases)\n![functional-tests](https://github.com/fabasoad/setup-cloe-action/actions/workflows/functional-tests.yml/badge.svg)\n![security](https://github.com/fabasoad/setup-cloe-action/actions/workflows/security.yml/badge.svg)\n![linting](https://github.com/fabasoad/setup-cloe-action/actions/workflows/linting.yml/badge.svg)\n\nThis action installs a [Cloe](https://cloe-lang.org).\n\n## Supported OS\n\n\u003c!-- prettier-ignore-start --\u003e\n| OS      | Arch   |                    |\n|---------|--------|--------------------|\n| Windows | x86_84 | :white_check_mark: |\n| Windows | arm    | :x:                |\n| Linux   | x86_84 | :white_check_mark: |\n| Linux   | arm    | :x:                |\n| macOS   | x86_84 | :white_check_mark: |\n| macOS   | arm    | :x:                |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Prerequisites\n\nThe following tools have to be installed for successful work of this GitHub action:\n[rake](https://ruby.github.io/rake), [go](https://go.dev).\n\n## Inputs\n\n```yaml\n- uses: fabasoad/setup-cloe-action@v0\n  with:\n    # (Optional) If \"false\" skips installation if cloe is already installed. If\n    # \"true\" installs cloe in any case. Defaults to \"false\".\n    force: \"false\"\n```\n\n## Outputs\n\n\u003c!-- prettier-ignore-start --\u003e\n| Name      | Description                       | Example |\n|-----------|-----------------------------------|---------|\n| installed | Whether cloe was installed or not | `true`  |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Example usage\n\n### Workflow configuration\n\n```yaml\nname: Test\n\non: push\n\njobs:\n  setup:\n    name: cloe\n    runs-on: ubuntu-latest\n    steps:\n      - uses: fabasoad/setup-cloe-action@v0\n      - name: Print version\n        run: cloe --version\n```\n\n### Result\n\n```shell\nRun cloe --version\n0.1.0\n```\n\n## Contributions\n\n![Alt](https://repobeats.axiom.co/api/embed/d0d2977d810a77b65f50e969ab57ef7364fa9306.svg \"Repobeats analytics image\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-cloe-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabasoad%2Fsetup-cloe-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-cloe-action/lists"}