Skip to content

Upgrade HtmlUnit from 2.x to 3.x #53

Upgrade HtmlUnit from 2.x to 3.x

Upgrade HtmlUnit from 2.x to 3.x #53

Workflow file for this run

name: Build Periodic Backup plugin
on: [push, pull_request]
jobs:
build:
name: Build on JDK ${{ matrix.jdk }}
strategy:
matrix:
jdk: [ '8', '11' ]
runs-on: ubuntu-latest
steps:
- name: Sync Repository
uses: actions/checkout@v2
with:
submodules: true
- 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: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.jdk }}
- name: Build with Gradle
run: mvn --batch-mode --update-snapshots verify