diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..1cbe5bf2 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI +on: + pull_request: + push: +jobs: + test: + strategy: + fail-fast: false + matrix: + include: + - os: ubuntu-latest + java: 8 + - os: windows-latest + java: 17 + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v2 + with: + distribution: temurin + java-version: ${{ matrix.java }} + - name: Build and test + shell: bash + run: sbt -v +test +doc