Additional SPARQL output formats for Data Distribution API #1790
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| MAVEN_OPTS: -Xmx1024M | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| path: Vitro | |
| - name: Maven Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-cache-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-cache-m2- | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| - name: Maven Build | |
| run: | | |
| cd ./Vitro | |
| mvn clean install |