Remove yShrink #370
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: Continous Integration for yGuard | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Run tests | |
| run: ./gradlew build test | |
| examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 1.8 | |
| - name: Local publication for consumption by examples | |
| run: ./gradlew publishToMavenLocal | |
| - name: Test annotation example | |
| working-directory: ./examples/annotation | |
| run: mvn package | |
| - name: Test application example | |
| working-directory: ./examples/application | |
| run: mvn package | |
| - name: Test external_library example | |
| working-directory: ./examples/external_library | |
| run: mvn package | |
| - name: Test library example | |
| working-directory: ./examples/library | |
| run: mvn package | |
| - name: Test resources example | |
| working-directory: ./examples/resources | |
| run: mvn package | |
| - name: Test serializable_exclusion example | |
| working-directory: ./examples/serializable_exclusion | |
| run: mvn package |