fix: upgrade com.fasterxml.jackson.datatype:jackson-datatype-jsr310 f… #752
This file contains hidden or 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: Consolerizer PR Build | |
| on: | |
| create: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| push: | |
| branches: | |
| - '**' | |
| - '!main' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'adopt' | |
| cache: maven | |
| - name: Build with Maven | |
| run: make b | |
| - name: Coverage | |
| run: make coverage | |
| - name: Build and Test Spring Boot Tester | |
| run: make build-maven-spring-boot |