Run Lune #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |