Skip to content

Merge pull request #175 from AndrewScull/encodeToBytes #90

Merge pull request #175 from AndrewScull/encodeToBytes

Merge pull request #175 from AndrewScull/encodeToBytes #90

Workflow file for this run

name: CI Build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
fail-fast: false
name: JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Run Integration Tests
run: mvn test