Skip to content

Commit

Permalink
Fix environment variables in CI github action (temporalio#2024)
Browse files Browse the repository at this point in the history
Fix environment variables in CI github action
  • Loading branch information
Quinn-With-Two-Ns authored Apr 3, 2024
1 parent bc726c9 commit e603fd8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
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

unit_test_jdk8:
Expand Down Expand Up @@ -59,6 +62,10 @@ jobs:
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

copyright:
Expand Down

0 comments on commit e603fd8

Please sign in to comment.