Skip to content
terminal

GitHub Action

Setup Kitten

v1.2.1 Latest version

Setup Kitten

terminal

Setup Kitten

This action sets up a Kitten

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Kitten

uses: fabasoad/setup-kitten-action@v1.2.1

Learn more about this action in fabasoad/setup-kitten-action

Choose a version

Setup Kitten

Stand With Ukraine GitHub release functional-tests security linting

This action sets up a Kitten.

Supported OS

OS Arch
Windows x86_84
Windows arm
Linux x86_84
Linux arm
macOS x86_84
macOS arm

Prerequisites

None.

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@main
      - uses: fabasoad/setup-kitten-action@main
      - name: Run script
        run: kitten ./hello-world.ktn

Result

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