Skip to content

Commit

Permalink
Merge branch 'master' into extendQanaryPipelineAsComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
dschiese authored Jun 28, 2024
2 parents 6b6bb00 + 1957792 commit b0e3a1e
Show file tree
Hide file tree
Showing 11 changed files with 398 additions and 249 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: mvn clean install -Dgpg.skip

- name: Deploy and Release artifact
run: mvn clean deploy -Dgpg.keyname=${{ secrets.MAVEN_GPG_KEYNAME }} -pl qanary_commons,qanary_pipeline-template,qanary_component-template
run: mvn clean deploy -Dgpg.keyname=${{ secrets.MAVEN_GPG_KEYNAME }} -pl qanary_commons,qanary_pipeline-template,qanary_component-template,qanary_component-parent
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_PASSWORD }}
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Execute tests for pull requests

on:
pull_request:

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with: # The environment variables are defined when needed (here, when the package is being published)
distribution: 'temurin'
java-version: '17'

- name: Execute tests
run: mvn test

4 changes: 2 additions & 2 deletions qald-evaluator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>eu.wdaqua.qanary</groupId>
<artifactId>qald.evaluator</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>

<parent>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -65,7 +65,7 @@
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
Loading

0 comments on commit b0e3a1e

Please sign in to comment.