Skip to content

Latest commit

 

History

History
74 lines (55 loc) · 1.85 KB

README.md

File metadata and controls

74 lines (55 loc) · 1.85 KB

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!