This action sets up a Wren CLI.
The following tools have to be installed for successful work of this GitHub action:
Name | Required | Description | Default | Possible values |
---|---|---|---|---|
version | No | wren version that can be found here | 0.4.0 |
0.3.0 , 0.4.0 |
Let's try to run hello-world.wren
file with the following content:
System.print("Hello World!")
name: Setup Wren CLI
on: push
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/setup-wren-action@main
- name: Run script
run: wren_cli ./hello-world.wren
Run wren_cli ./hello-world.wren
Hello World!