Skip to content

Fixing jackson @JsonCreator annotation #16

Fixing jackson @JsonCreator annotation

Fixing jackson @JsonCreator annotation #16

Workflow file for this run

name: Master
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Install Maven dependencies
run: mvn install -DskipTests
- name: Build with Maven
run: mvn compile
- name: Run tests
run: mvn test