Skip to content

geoserver-build

geoserver-build #161

Workflow file for this run

name: geoserver-build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run the Maven install phase
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Run the Maven test phase
run: mvn test -B