Support comparison of integer values #293
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: CI + Coverage Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Krill | |
uses: actions/checkout@v4 | |
with: | |
path: Krill | |
- name: Checkout Kustvakt | |
uses: actions/checkout@v4 | |
with: | |
repository: KorAP/Kustvakt | |
path: Kustvakt | |
- name: Checkout Koral | |
uses: actions/checkout@v4 | |
with: | |
repository: KorAP/Koral | |
path: Koral | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'maven' | |
- name: Build and install Krill | |
run: mvn --file Krill/pom.xml install | |
- name: Build and install Koral | |
run: mvn --file Koral/pom.xml install | |
- name: Build and package Kustvakt full | |
run: mvn --file Kustvakt/pom.xml package |