Fix exception in GrpcRetryer. #118
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
unit_test_edge: | |
name: Unit test with in-memory test service [Edge] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "19" | |
distribution: "temurin" | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run unit tests | |
env: | |
USER: unittest | |
USE_DOCKER_SERVICE: false | |
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
unit_test_jdk8: | |
name: Unit test with docker service [JDK8] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "11" | |
distribution: "temurin" | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Start containerized server and dependencies | |
run: | | |
docker compose \ | |
-f ./docker/github/docker-compose.yaml \ | |
up -d temporal | |
- name: Run unit tests | |
env: | |
USER: unittest | |
TEMPORAL_SERVICE_ADDRESS: localhost:7233 | |
USE_DOCKER_SERVICE: true | |
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
copyright: | |
name: Copyright and code format | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "11" | |
distribution: "temurin" | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run copyright and code format checks | |
run: ./gradlew --no-daemon checkLicenseMain checkLicenses spotlessCheck |