Skip to content

Bump com.fasterxml.jackson.module:jackson-module-kotlin from 2.16.+ to 2.17.1 #63

Bump com.fasterxml.jackson.module:jackson-module-kotlin from 2.16.+ to 2.17.1

Bump com.fasterxml.jackson.module:jackson-module-kotlin from 2.16.+ to 2.17.1 #63

Workflow file for this run

name: Build and Test Pull Request
on:
pull_request:
branches:
- master
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'temurin'
- name: Grant execute permission for Gradle wrapper
run: chmod +x gradlew
- name: Build
run: ./gradlew build --info
- name: Run Tests
run: ./gradlew test
- name: Run Mutation Tests
run: ./gradlew pitest