WIP: add MGH writing. currently fails. MGZ seems to work. #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unittests | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Build | |
working-directory: ./jneuroformats | |
run: mvn --batch-mode -DskipTests package | |
- name: Test | |
working-directory: ./jneuroformats | |
run: mvn --batch-mode test |