Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T09:23:55.000Z (6 months ago)
- Last Synced: 2024-10-15T17:23:43.806Z (3 months ago)
- Topics: cli, github-action, github-actions, interpreter, kitten, programming-language
- Homepage:
- Size: 1.03 MB
- Stars: 2
- Watchers: 2
- 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
[![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-kitten-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-kitten-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/setup-kitten-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-kitten-action/actions/workflows/linting.yml/badge.svg)This action sets up a [Kitten](http://kittenlang.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
None.
## 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@main
- uses: fabasoad/setup-kitten-action@main
- name: Run script
run: kitten ./hello-world.ktn
```### Result
```shell
Run kitten ./hello-world.ktn
Hello World!
```