Skip to content

Link to RPB if superordinate resource is found in RPB (RPB-263) #650

Link to RPB if superordinate resource is found in RPB (RPB-263)

Link to RPB if superordinate resource is found in RPB (RPB-263) #650

Workflow file for this run

name: Build
on:
push
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install metafacture-core 5.7.1
run: |
git clone https://github.com/metafacture/metafacture-core.git -b metafacture-core-5.7.1
cd metafacture-core
./gradlew publishToMavenLocal
cd ..
- name: Install metafacture-fix 0.7.1
run: |
git clone https://github.com/metafacture/metafacture-fix.git -b 0.7.1
cd metafacture-fix
./gradlew publishToMavenLocal
cd ..
- name: Run tests
run: sbt "test-only tests.CITests"