Skip to content

Added possibility to divide step size to 0.001 #152

Added possibility to divide step size to 0.001

Added possibility to divide step size to 0.001 #152

Workflow file for this run

name: Build and test
on: [pull_request]
jobs:
build-and-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Cache the Maven packages to speed up build
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and test
run: mvn clean install