Skip to content

improve README

improve README #6

Workflow file for this run

name: Development branches
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Build and run tests
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
- name: Expose branch name
run: echo ${{ github.ref }}
# Setup JDK and Maven
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
cache: maven
# Prepare
- name: Prepare Maven Wrapper
run: chmod +x ./mvnw
# Build
- name: Build with Maven
run: ./mvnw clean verify -U -B -T4 -ntp