feat: Add Step Local Memory (#134), Generation ID Protection (#128), and While Loop Breakpoint Support (#166) #419
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: Build Maestro | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags: | |
| - v*.*.* | |
| - v*.*.*-rc.* | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Gradle build | |
| run: ./gradlew build |