Skip to content

Run Lune

Run Lune #10

Workflow file for this run

name: Run Lune
on:
workflow_dispatch:
jobs:
run-lune:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Aftman
uses: ok-nick/setup-aftman@v0.4.2
with:
path: client
cache: true
token: ${{ github.token }}
- name: Install Lune
working-directory: client
run: |
aftman install
- name: Run Lune script
working-directory: client
run: |
echo 'print("Hello from Lune on macOS!")' > hello.luau
lune hello.luau