Skip to content

[docs] add Build and test locally section #12

[docs] add Build and test locally section

[docs] add Build and test locally section #12

Workflow file for this run

name: Automatic tests
on:
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [ '11', '15','17' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test