Skip to content

Bump com.github.tomakehurst:wiremock-jre8 from 2.23.2 to 2.35.1 #22

Bump com.github.tomakehurst:wiremock-jre8 from 2.23.2 to 2.35.1

Bump com.github.tomakehurst:wiremock-jre8 from 2.23.2 to 2.35.1 #22

Workflow file for this run

name: Run Unit Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B clean test --file pom.xml