We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c612218 commit 1b4af15Copy full SHA for 1b4af15
1 file changed
.github/workflows/run-java-spring-boot-tests.yml
@@ -35,6 +35,13 @@ jobs:
35
- name: Make mvnw executable
36
run: chmod +x mvnw
37
38
+ - name: Debug environment variables
39
+ run: |
40
+ echo "Checking environment variables..."
41
+ echo "MONGODB_URI is set: $(if [ -n "$MONGODB_URI" ]; then echo 'YES'; else echo 'NO'; fi)"
42
+ echo "ENABLE_SEARCH_TESTS is set: $(if [ -n "$ENABLE_SEARCH_TESTS" ]; then echo 'YES'; else echo 'NO'; fi)"
43
+ echo "MONGODB_URI length: ${#MONGODB_URI}"
44
+
45
- name: Run unit tests
46
run: ./mvnw test
47
0 commit comments