Skip to content

Fixed typos and improved wording. #60

Fixed typos and improved wording.

Fixed typos and improved wording. #60

Workflow file for this run

name: Tests
on:
push:
branches: [ development, main ]
pull_request:
branches: [ development ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 17 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Build with Maven
run: mvn verify