Skip to content

Commit 98edbae

Browse files
committed
Fix WorkFlow
1 parent 29de144 commit 98edbae

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,11 @@ jobs:
3737
java-version: '17'
3838
distribution: 'temurin'
3939

40-
- name: 🔨 Build project with Maven (safe mode for tests)
40+
- name: 🔨 Build project with Maven (skip tests)
4141
run: |
4242
mvn -B clean install \
4343
-Dgpg.skip=true \
44-
-Dsurefire.parallel=none \
45-
-Dsurefire.timeout=500
44+
-DskipTests
4645
4746
- name: 🧪 Perform CodeQL Analysis
4847
uses: github/codeql-action/analyze@v3

.github/workflows/maven.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ jobs:
2828
env:
2929
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
3030

31-
- name: 🔨 Build with Maven (GPG Enabled, single-threaded, extended timeout)
31+
- name: 🔨 Build with Maven (GPG Enabled, skip tests)
3232
run: |
3333
mvn -B clean install \
34+
-DskipTests \
3435
-Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" \
35-
-Dgpg.pinentry.mode=loopback \
36-
-Dsurefire.parallel=none \
37-
-Dsurefire.timeout=500
36+
-Dgpg.pinentry.mode=loopback

0 commit comments

Comments
 (0)