Skip to content

Fix invalid input handling in Angle, Latitude, Longitude, and Location classes #10

Fix invalid input handling in Angle, Latitude, Longitude, and Location classes

Fix invalid input handling in Angle, Latitude, Longitude, and Location classes #10

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install -Dgpg.skip=true
- name: Run unit tests
run: mvn test