{"id":15022223,"url":"https://github.com/fabasoad/setup-lolcode-action","last_synced_at":"2026-01-05T03:44:23.157Z","repository":{"id":42535379,"uuid":"315957066","full_name":"fabasoad/setup-lolcode-action","owner":"fabasoad","description":"This GitHub action installs LOLCODE programming language interpreter.","archived":false,"fork":false,"pushed_at":"2024-04-13T16:59:31.000Z","size":1042,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-02T05:07:19.847Z","etag":null,"topics":["cli","github-action","github-actions","interpreter","lolcode","programming-language"],"latest_commit_sha":null,"homepage":"","language":null,"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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://en.cryptobadges.io/donate/145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH"],"github":["fabasoad"],"ko_fi":"fabasoad","liberapay":"fabasoad"}},"created_at":"2020-11-25T14:04:06.000Z","updated_at":"2024-08-02T15:14:26.909Z","dependencies_parsed_at":"2023-12-02T05:30:00.670Z","dependency_job_id":"173697bd-f795-433f-9254-78a8100f0bd0","html_url":"https://github.com/fabasoad/setup-lolcode-action","commit_stats":{"total_commits":149,"total_committers":7,"mean_commits":"21.285714285714285","dds":0.610738255033557,"last_synced_commit":"42d65ed9d86326b4da60efc7db1d5a0a92ef82b1"},"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-lolcode-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-lolcode-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-lolcode-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-lolcode-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabasoad","download_url":"https://codeload.github.com/fabasoad/setup-lolcode-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244928367,"owners_count":20533544,"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":["cli","github-action","github-actions","interpreter","lolcode","programming-language"],"created_at":"2024-09-24T19:57:39.869Z","updated_at":"2026-01-05T03:44:23.153Z","avatar_url":"https://github.com/fabasoad.png","language":null,"readme":"# Setup LCI - LOLCODE interpreter\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-lolcode-action?include_prereleases)\n![functional-tests](https://github.com/fabasoad/setup-lolcode-action/actions/workflows/functional-tests.yml/badge.svg)\n![security](https://github.com/fabasoad/setup-piet-action/actions/workflows/security.yml/badge.svg)\n![linting](https://github.com/fabasoad/setup-lolcode-action/actions/workflows/linting.yml/badge.svg)\n\nThis action sets up a [LOLCODE](http://www.lolcode.org/) interpreter called [LCI](https://github.com/justinmeza/lci).\n\n## Unsupported LCI versions\n\n\u003c!-- prettier-ignore-start --\u003e\n| OS      | Version                                       |\n|---------|-----------------------------------------------|\n| Windows | All                                           |\n| Linux   | 0.9.1                                         |\n| macOS   | 0.9.1, 0.10.1, 0.10.2, 0.10.3, 0.10.4, 0.11.1 |\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[cmake](https://cmake.org), [make](https://www.gnu.org/software/make/manual/make.html).\n\n## Inputs\n\n```yaml\n- uses: fabasoad/setup-lolcode-action@v1\n  with:\n    # (Optional) LCI version. Defaults to the latest version.\n    version: \"0.11.2\"\n    # (Optional) If \"true\" it installs LCI even if it is already installed on a\n    # runner. Otherwise, skips installation.\n    force: \"false\"\n    # (Optional) GitHub token that is used to send requests to GitHub API such\n    # as getting latest release. Defaults to the token provided by GitHub Actions\n    # environment.\n    github-token: \"${{ github.token }}\"\n```\n\n## Outputs\n\n\u003c!-- prettier-ignore-start --\u003e\n| Name      | Description                      | Example |\n|-----------|----------------------------------|---------|\n| installed | Whether LCI was installed or not | `true`  |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Example usage\n\nLet's try to run `hello-world.lc` file with the following content:\n\n```cobol\nHAI 1.3\n  CAN HAS STDIO?\n  VISIBLE \"Hello World!\"\nKTHXBYE\n```\n\n### Workflow configuration\n\n```yaml\nname: Setup LCI\n\non: push\n\njobs:\n  setup:\n    name: Setup\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v5\n      - uses: fabasoad/setup-lolcode-action@v1\n      - name: Run script\n        run: lci ./hello-world.lc\n```\n\n### Result\n\n```text\nRun lci ./hello-world.lc\nHello World!\n```\n\n## Contributions\n\n![Alt](https://repobeats.axiom.co/api/embed/9b6c378bb5c49b5d03f785f2db871e5cd96e46f6.svg \"Repobeats analytics image\")\n","funding_links":["https://en.cryptobadges.io/donate/145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH","https://github.com/sponsors/fabasoad","https://ko-fi.com/fabasoad","https://liberapay.com/fabasoad"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-lolcode-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabasoad%2Fsetup-lolcode-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-lolcode-action/lists"}