update to grobid 0.8.1 #5
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 unstable | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout grobid home | |
uses: actions/checkout@v4 | |
with: | |
repository: kermitt2/grobid | |
path: ./grobid | |
- name: Checkout Pub2TEI | |
uses: actions/checkout@v4 | |
with: | |
path: ./grobid/Pub2TEI | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Build and run integration tests | |
working-directory: ./grobid/Pub2TEI | |
run: ./gradlew test --stacktrace --info |