feat: Hotfix supports old functions #496
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
| # Workflow's name | |
| name: macos-clang | |
| # Run this workflow every time a new commit pushed to your repository | |
| on: [push, pull_request] | |
| jobs: | |
| macos-clang: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Build | |
| run: | | |
| brew install premake | |
| premake5 add --package=https://github.com/sniper00/lrust.git | |
| premake5 build --release | |
| - name: Test | |
| run: | | |
| chmod +x target/release/moon | |
| premake5 run --release example/test/main_test.lua |