[Gradle Release Plugin] - pre tag commit: 'v0.8.0'. #30
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: Run integration tests manually | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout grobid home | |
uses: actions/checkout@v4 | |
with: | |
repository: kermitt2/grobid | |
path: ./grobid | |
- name: Checkout grobid-quantities | |
uses: actions/checkout@v4 | |
with: | |
path: ./grobid/grobid-quantities | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17.0.10+7' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Build and run integration tests | |
working-directory: ./grobid/grobid-quantities | |
run: ./gradlew copyModels integration --no-daemon | |