Skip to content

Record Feature Progress #378

Record Feature Progress

Record Feature Progress #378

Workflow file for this run

name: baseline build
on:
push:
branches: [ java-17 ]
pull_request:
branches: [ java-17 ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest] #, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Gradle
run: ./gradlew check
- name: Run PolDet test
run: ./gradlew testPolDet