Implement autosave feature #6
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 | |
| on: | |
| push: | |
| branches: [ main, develop, copilot/** ] | |
| pull_request: | |
| branches: [ main, develop ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '8' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build and install Ponder to local Maven repository | |
| run: | | |
| cd dependencies/Ponder | |
| git checkout v1.0 | |
| chmod +x gradlew | |
| ./gradlew build publishToMavenLocal -x test | |
| - name: Build SimpleSkills with Maven | |
| run: mvn clean compile --batch-mode --update-snapshots |