Skip to content

WPR-14 - Format Link16 data, start working on editing #61

WPR-14 - Format Link16 data, start working on editing

WPR-14 - Format Link16 data, start working on editing #61

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "master" ]
jobs:
build:
name: Build ${{ github.run_number }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Test with Maven
run: mvn test