Skip to content

Dependency updates, mima, and github actions #54

Dependency updates, mima, and github actions

Dependency updates, mima, and github actions #54

Workflow file for this run

name: andxor
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 11, 17, 21]
steps:
- uses: actions/checkout@v4
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: sbt
- name: Test
run: ./both.sh test sequential
- name: Check binary compatibility
run: ./both.sh mimaReport sequential
- name: Build docs
run: ./both.sh docs sequential