Skip to content

Merge pull request #11 from geonetwork/cswharvester-capabilitieserror… #32

Merge pull request #11 from geonetwork/cswharvester-capabilitieserror…

Merge pull request #11 from geonetwork/cswharvester-capabilitieserror… #32

# 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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# It also sends the dependency graph to GitHub for further analysis.
name: "Java Compile and Test"
on:
push:
branches: ['*']
pull_request:
branches: ['main']
jobs:
compile_and_test:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: 'maven'
- name: Build and test with Maven
run: mvn --batch-mode --update-snapshots verify
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@v3