Skip to content

Commit

Permalink
Merge branch 'main' into rocketstack-matt-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketstack-matt authored May 29, 2024
2 parents 0512b1e + f0fe8f9 commit 41093e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/translator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,13 @@ jobs:
java-version: '21'
distribution: 'temurin'
cache: maven
- run: mvn -B install --file ./translator/pom.xml
- run: mvn -B install --file ./translator/pom.xml
# - name: Add coverage to PR
# id: jacoco
# uses: madrapps/[email protected]
# with:
# paths: ${{ github.workspace }}/translator/target/site/jacoco/jacoco.xml
# token: ${{ secrets.GITHUB_TOKEN }}
# min-coverage-overall: 80
# min-coverage-changed-files: 80

21 changes: 20 additions & 1 deletion translator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.finos</groupId>
Expand Down Expand Up @@ -93,6 +93,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 41093e4

Please sign in to comment.