Bump com.fasterxml.jackson.core:jackson-databind from 2.15.2 to 2.15.3 #545
Workflow file for this run
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: Run tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
distribution: ['zulu'] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
version: [ 11, 12, 13, 14, 15 ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.version }} | |
- run: mvn test -B | |
# This is after the test run to work around | |
# https://issues.apache.org/jira/projects/MJAVADOC/issues/MJAVADOC-736 | |
- run: mvn javadoc:javadoc |