Update autolink protocols #51
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: TESTAR-AUTOLINK Windows build test | |
| on: | |
| push: | |
| branches: [ autolink ] | |
| jobs: | |
| windows-build: | |
| runs-on: windows-latest | |
| timeout-minutes: 5 | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ '11', '17', '21' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'corretto' | |
| java-version: ${{ matrix.java }} | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Clean TESTAR-AUTOLINK with Gradle | |
| run: ./gradlew clean | |
| - name: Build TESTAR-AUTOLINK with Gradle | |
| run: ./gradlew build |