This action sets up a Kitten.
OS | Arch | |
---|---|---|
Windows | x86_84 | ✅ |
Windows | arm | ❌ |
Linux | x86_84 | ✅ |
Linux | arm | ❌ |
macOS | x86_84 | ✅ |
macOS | arm | ❌ |
None.
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@main
- uses: fabasoad/setup-kitten-action@main
- name: Run script
run: kitten ./hello-world.ktn
Run kitten ./hello-world.ktn
Hello World!