Skip to content

Merge pull request #37 from mathworks/update-release-process #26

Merge pull request #37 from mathworks/update-release-process

Merge pull request #37 from mathworks/update-release-process #26

Workflow file for this run

name: Run tests
on:
push:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Run Maven tests
run: mvn verify