Skip to content

Merge pull request #181 from mianalysis/145 #497

Merge pull request #181 from mianalysis/145

Merge pull request #181 from mianalysis/145 #497

Workflow file for this run

name: Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
release:
types:
- created
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'windows-latest'] #, 'ubuntu-latest' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
architecture: x64
cache: maven
- name: Test with Maven
run: mvn -B test