Skip to content

Add the indexer command line tool #2619

Add the indexer command line tool

Add the indexer command line tool #2619

Workflow file for this run

name: Unit-Test
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macos-latest, windows-latest, ubuntu-latest]
os: [windows-latest, ubuntu-latest]
java: [ '11' ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: sbt
- run: sbt test
shell: bash