(#333) Add Lua scripting #180
Workflow file for this run
This file contains 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
# When a pull request is send, only build and test | |
name: Build & test | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
- ready_for_review | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: windows-latest | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@v1 | |
- name: Run the Cake script | |
uses: cake-build/cake-action@v1 |