We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e53ef commit 6eba61eCopy full SHA for 6eba61e
2 files changed
.github/workflows/ci.yaml
@@ -63,7 +63,12 @@ jobs:
63
run: chmod +x gradlew
64
65
- name: Run all tests
66
- run: ./gradlew clean test --no-daemon --stacktrace --parallel --no-build-cache --no-configuration-cache --rerun-tasks
+ run: |
67
+ ./gradlew test \
68
+ --no-daemon \
69
+ --parallel \
70
+ --no-build-cache \
71
+ --no-configuration-cache
72
env:
73
# Testcontainers 优化配置
74
TESTCONTAINERS_RYUK_DISABLED: false
.github/workflows/maven-central-publish.yaml
@@ -61,8 +61,6 @@ jobs:
61
run: |
62
./gradlew publishToMavenCentral \
--no-daemon \
- --stacktrace \
- --info \
--parallel \
--no-configuration-cache \
-PsigningInMemoryKeyId="${{ secrets.GPG_KEY_ID }}" \
0 commit comments