Skip to content

Commit 299e621

Browse files
committed
Running test even if build fails (so that one build does not fail all tests)
1 parent bab44b1 commit 299e621

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/plugin-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Upload job artifact
4242
uses: actions/upload-artifact@v4
4343
with:
44-
name: jar-jdk{{ matrix.versions.jdk }}
44+
name: jar-jdk${{ matrix.versions.jdk }}
4545
path: ./mappingservice-plugin/build/libs/SEMplugin.jar
4646

4747
test:
@@ -54,12 +54,12 @@ jobs:
5454
# Use both LTS releases and latest one for tests
5555
versions: [ { jdk: 17, mapping-service: v1.0.5 }, { jdk: 23, mapping-service: latest } ]
5656
needs: build
57-
57+
if: always()
5858
steps:
5959
- name: Download built jar
6060
uses: actions/download-artifact@v4
6161
with:
62-
name: jar-jdk{{ matrix.versions.jdk }}
62+
name: jar-jdk${{ matrix.versions.jdk }}
6363
path: ./plugins
6464

6565
- name: Download Hurl

0 commit comments

Comments
 (0)