We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f21fec commit 0961ecaCopy full SHA for 0961eca
.github/workflows/ci.yml
@@ -138,12 +138,11 @@ jobs:
138
java-version: '21'
139
distribution: 'temurin'
140
141
- - name: Run Tests
142
- run: |
143
- if [ "${{ matrix.os }}" = "linux" ]; then
144
- export NO_AT_BRIDGE=1
145
- fi
146
- mvn verify -Djarsigner.skip=true -DskipTests=false -DtestWorkspace="${{ matrix.testWorkspace }}"
+ - name: Set NO_AT_BRIDGE
+ if: runner.os == 'linux'
+ run: export NO_AT_BRIDGE=1
+ - name: Run Maven
+ run: mvn verify -Djarsigner.skip=true -DskipTests=false -DtestWorkspace="${{ matrix.testWorkspace }}"
147
148
- name: Publish Test Reports
149
if: ${{ always() }}
0 commit comments