This action sets up a Kitten.
OS | |
---|---|
Windows | ✅ |
Linux | ✅ |
macOS | ✅ |
None.
- 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"
Name | Description | Example |
---|---|---|
installed | Whether kitten was installed or not | true |
Let's try to run hello-world.ktn
file with the following content:
"Hello World!" say
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
Run kitten ./hello-world.ktn
Hello World!