From 9aa2c27d2cf090633ac0010c040efa6efd891789 Mon Sep 17 00:00:00 2001 From: Luca Foppiano Date: Thu, 4 Jul 2024 16:38:47 +0900 Subject: [PATCH] add github actions --- .github/workflows/ci-build.yml | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 00000000..247aa3fb --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,35 @@ +name: Build unstable + +on: [push, workflow_dispatch] + +concurrency: + group: gradle + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout grobid home + uses: actions/checkout@v4 + with: + repository: kermitt2/grobid + path: ./grobid + - name: Checkout grobid-ner + uses: actions/checkout@v4 + with: + repository: kermitt2/grobid-ner + path: ./grobid/grobid-ner + - name: Checkout entity-fishing + uses: actions/checkout@v4 + with: + path: . + - uses: actions/checkout@v4 + - name: Set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: '11' + distribution: 'adopt' + cache: 'gradle' + - name: Build with Gradle + run: ./gradlew build \ No newline at end of file