Update LICENSE #1132
Workflow file for this run
This file contains 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: Checkout vitro languages | |
uses: actions/checkout@v3 | |
with: | |
repository: vivo-project/Vitro-languages | |
path: Vitro-languages | |
- name: Maven Cache | |
uses: actions/cache@v2 | |
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@v1 | |
with: | |
java-version: 11 | |
- name: Maven Build | |
run: | | |
cd ./Vitro-languages | |
mvn clean install | |
cd ../Vitro | |
mvn clean install |