TKSS-388: Add TLS demo with gRPC #113
Workflow file for this run
This file contains 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: Execute build on PR | |
on: pull_request | |
jobs: | |
precheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source | |
uses: actions/checkout@v4 | |
- name: Run precheck script | |
run: bash ./.github/workflows/scripts/precheck.sh | |
shell: bash | |
gradle: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} | |
needs: [precheck] | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
java-version: [8, 11, 17] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout the source | |
uses: actions/checkout@v4 | |
- name: Set up JDKs | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Execute Gradle build | |
run: ./gradlew clean build |