Release version 13.20.0 #6379
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: Unit tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build and unit tests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install JDK | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| !*gluecodium* | |
| !*lime-* | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build and test :lime-runtime | |
| run: ./gradlew :lime-runtime:build | |
| - name: Build and test :lime-loader | |
| run: ./gradlew :lime-loader:build | |
| - name: Build and test :gluecodium | |
| run: ./gradlew :gluecodium:build | |
| - name: Build and test :gluecodium-gradle | |
| run: ./gradlew :gluecodium-gradle:build |