Skip to content

Update build

Update build #579

Workflow file for this run

# Workflow's name
name: linux-clang
# Run this workflow every time a new commit pushed to your repository
on: [push, pull_request]
jobs:
linux-clang:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Installing premake5
uses: Jarod42/install-premake5@v3
- name: Build
run: |
premake5 build --release
- name: Test
run: |
chmod +x build/bin/Release/moon
premake5 run --release example/test/main_test.lua