https://github.com/fabasoad/setup-kitten-action
This GitHub action installs Kitten programming language interpreter.
https://github.com/fabasoad/setup-kitten-action
cli github-action github-actions interpreter kitten programming-language
Last synced: 4 months ago
JSON representation
This GitHub action installs Kitten programming language interpreter.
- Host: GitHub
- URL: https://github.com/fabasoad/setup-kitten-action
- Owner: fabasoad
- License: mit
- Created: 2020-11-21T11:59:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:26.000Z (4 months ago)
- Last Synced: 2025-03-11T23:19:12.917Z (4 months ago)
- Topics: cli, github-action, github-actions, interpreter, kitten, programming-language
- Language: Shell
- Homepage:
- Size: 1.03 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup Kitten
[](https://stand-with-ukraine.pp.ua)



This action sets up a [Kitten](http://kittenlang.org/).
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :white_check_mark: |## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/setup-kitten-action@v1
with:
# (Optional) If "false" skips installation if kitten is already installed.
# If "true" installs kitten in any case. Defaults to "false".
force: "false"
```## Outputs
| Name | Description | Example |
|-----------|-------------------------------------|---------|
| installed | Whether kitten was installed or not | `true` |## Example usage
Let's try to run `hello-world.ktn` file with the following content:
```haskell
"Hello World!" say
```### Workflow configuration
```yaml
name: Setup Kittenon: push
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fabasoad/setup-kitten-action@v1
- name: Run script
run: kitten ./hello-world.ktn
```### Result
```shell
Run kitten ./hello-world.ktn
Hello World!
```