fix(deps): update dependency com.fasterxml.jackson.core:jackson-databind to v2.18.1 #2333
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coveralls | |
on: [pull_request] | |
jobs: | |
coveralls: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Build & Test | |
run: mvn clean test | |
- name: Build with Maven | |
run: mvn test jacoco:report | |
- name: Coveralls Coverage Report Submission | |
run: mvn coveralls:report --define repoToken=${{ secrets.COVERALL_REPO_TOKEN }} |