Skip to content

This GitHub action installs Kitten programming language interpreter.

License

Notifications You must be signed in to change notification settings

fabasoad/setup-kitten-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Setup Kitten

Stand With Ukraine GitHub release functional-tests security linting

This action sets up a Kitten.

Supported OS

OS
Windows
Linux
macOS

Prerequisites

None.

Inputs

- 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:

"Hello World!" say

Workflow configuration

name: Setup Kitten

on: 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

Run kitten ./hello-world.ktn
Hello World!