Skip to content

Update README.md

Update README.md #283

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ master, develop, 'feature/build' ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 19
uses: actions/setup-java@v2
with:
java-version: '19'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml