Skip to content

Merge pull request #11 from knowbi/master #16

Merge pull request #11 from knowbi/master

Merge pull request #11 from knowbi/master #16

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Hop-gis-plugins Verify
on:
push:
paths-ignore:
- 'docker/**'
- 'examples/**'
- 'jenkins/**'
pull_request:
paths-ignore:
- 'docker/**'
- 'examples/**'
- 'jenkins/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Verify with Maven
run: mvn -B -U -e -ff clean verify --file pom.xml
- run: mkdir staging && cp assemblies/target/gis-plugin-assemblies-*.zip staging
- uses: actions/upload-artifact@v2
with:
name: Upload artifact
path: staging